forked from antihax/antihax.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
66 lines (55 loc) · 964 Bytes
/
index.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
body {
margin: 0;
padding: 0;
}
.video {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
background-size: cover;
display: flex;
justify-content: center;
}
#bgVid {
position: absolute;
top: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}
.navbar {
background-color: #333;
opacity: 85%;
overflow: hidden;
position: fixed;
display:table;
bottom: 0;
width: 100%;
}
.navbar-nav > li {
float:none;
display:table-cell;
text-align:center;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 40px;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar a.active {
background-color: #04AA6D;
color: white;
}
.navbar .icon {
display: none;
}