-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathindex.css
More file actions
56 lines (48 loc) · 1.13 KB
/
index.css
File metadata and controls
56 lines (48 loc) · 1.13 KB
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
* {
-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;
}
#container {
margin: auto;
text-align: center;
position: relative;
top: 50%;
transform: translate3d(0,-50%,0);
}
.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;
}
.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; }