-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
67 lines (61 loc) · 1.01 KB
/
main.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
body{
background-color: #000000;
color: #ffffff;
font-family: 'Roboto Mono', monospace;
text-align: center;
}
h1, h2{
text-align: center;
}
.main {
display: block;
margin-left: auto;
margin-right: auto;
width: 600px;
margin-top: 50px;
}
form {
display: inline-block;
margin-left: auto;
margin-right: auto;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #000000;
color: white;
text-align: center;
}
a:link {
color: #ffffff;
text-decoration: none;
}
a:visited {
color: #ffffff;
text-decoration: none;
}
a:hover{
color: lime;
text-decoration: none;
}
a:active{
color: fuchsia;
text-decoration: none;
}
.video-box{
margin-left: auto;
margin-right: auto;
width: 800px;
margin-top: 50px;
border: 2px solid white;
margin-bottom: 20px;
}
.thumb{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
margin-bottom: 20px;
}