-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
93 lines (80 loc) · 1.45 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
html {
background-color: black;
}
body {
background-color: black;
margin: 0;
}
.topnav {
overflow: hidden;
background-color: #666;
width: fill;
}
.topnav a {
float: left;
padding: 20px 20px;
font-size: 17px;
color: #ccc;
text-decoration: none;
background-color: #333;
}
.topnav a:hover {
background-color: #444;
}
.games {
border: 1px solid #f0f0f0;
box-sizing: border-box;
float: left;
margin: 5px;
width: calc(100vw/6 - 15px);
height: calc(5vw / 2 + 60px);
padding: 0;
text-align: center;
font-size: calc(20px + (1vw - 2vh));
}
#gamesDiv {
margin-top: 20px;
width: calc(100vw - 30px);
height: calc(10vw / 2 + 140px);
border: solid 1px #fff;
position: center;
vertical-align: center;
background-color: black;
}
#gamesWrapper {
margin: auto;
display: table;
background-color: black;
}
.links {
border: 1px solid #f0f0f0;
box-sizing: border-box;
float: left;
margin: 5px;
width: calc(100vw/6 - 15px);
height: calc(5vw / 2 + 60px);
padding: 0;
text-align: center;
font-size: calc(20px + (1vw - 2vh));
}
#linksDiv {
margin-top: 20px;
width: calc(100vw - 30px);
height: calc(10vw / 2 + 140px);
border: solid 1px #fff;
position: center;
vertical-align: center;
background-color: black;
}
#linksWrapper {
margin: auto;
display: table;
background-color: black;
}
.linksManager {
display: none;
}
.active {
background-color: #111 !important;
color: white !important;
}