forked from hackeysackers/seesecurity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (57 loc) · 853 Bytes
/
styles.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
.bodyWrapper {
width: 100%;
height: 100%;
}
.bodyWrapper ul {
width: 100%;
height: 33%;
table-layout: fixed;
display: table;
margin-left: none;
}
.bodyWrapper ul li {
display: table-cell;
list-style-type: none;
height: 60%;
width: 20%;
}
.leftColumn {
width: 33%;
height: 33%;
background-color: black;
}
.fullBodyImg {
height: 100%;
width: 100%;
}
.fullBodyImg img {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
.center {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
text-align: center;
z-index: 0;
}
.center ul {
width:70%;
margin: auto;
list-style: none;
text-align: center;
display: inline-table;
}
.center ul li {
display: inline;
list-style: none;
}
.center ul li img {
max-width: 10%;
max-height: 10%;
}