-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.css
84 lines (73 loc) · 1.57 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
* {
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
font-family: "Open Sans";
font-size: 13px;
text-align: center;
overflow: hidden;
}
#changelog {
position: fixed;
padding: 35px;
float: right;
bottom: 10;
right: 10;
/* z-index: -1;*/
}
#changelog > p {
width: 80%;
margin: auto;
text-align: center;
}
#changelog > ul {
list-style-type: none;
text-align: left;
margin: auto;
padding-left: 0;
}
#container {
margin: auto;
text-align: center;
position: relative;
top: 50%;
transform: translate3d(0,-50%,0);
}
@media only screen and (max-width: 1000px) {
#changelog {
display: none;
}
}
.button {
display: block;
width: 250px;
padding: 15px 0 15px 0;
margin: 5px auto;
cursor: pointer;
color: white;
text-decoration: none;
font-size: 15px;
font-weight: bold;
}
.button:first-child {
border-radius: 5px 5px 0 0;
}
.button:last-child {
border-radius: 0 0 5px 5px;
}
.orange { background-color: orange; }
.green { background-color: #7FCA9F; }
.blue { background-color: #85C1F5; }
.red { background-color: #E96D63; }
.purple { background-color: #DA70D6; }
.yellow { background-color: #F4BA70; }
.green:hover { background-color: #6EB98E; }
.blue:hover { background-color: #74B0E4; }
.red:hover { background-color: #D85C52; }
.purple:hover { background-color: #C96995; }
.yellow:hover { background-color: #E3A969; }