-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (81 loc) · 1.34 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
html {
font-family: 'Nunito', sans-serif;
color: white;
background-color: rgb(20, 20, 20);
margin-left: 25px;
margin-right: 25px;
}
hr {
background-color: rgb(30,30,30);
border-color: transparent;
margin-top: 1rem;
margin-bottom: 1rem;
width: 50%;
height: 2px;
}
iframe {
width: 560px;
height: 315px;
}
.center {
text-align: center;
}
footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(20,20,20);
}
a {
color: white;
text-decoration: underline;
}
#video-holder:last-child {
margin-bottom: 5rem !important;
}
*::before, *::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
button, input {
border-radius: 4px;
outline: none;
border: 2px solid rgb(45, 45, 45);
}
button {
background-color: rgb(45, 45, 45);
width: 4rem;
color: white;
height: 1.3rem;
}
input {
height: 1.2rem;
outline: none;
}
input:focus, textarea:focus, select:focus{
outline: none;
}
button:active {
background-color: rgb(25, 25, 25);
color: rgb(224, 224, 224);
}
.space {
background-color: transparent;
border-color: transparent;
margin-top: 2rem;
margin-bottom: 2rem;
height: 30px;
}
@media screen and (max-width: 600px) {
html {
font-size: 1.4rem;
margin-left: 20px;
margin-right: 20px;
margin-bottom: 40px;
}
iframe {
width: 400px;
height: 225px;
}
}