forked from HadesArchitect/MyVoteAWS
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
129 lines (112 loc) · 1.99 KB
/
style.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,600);
*{
box-sizing:border-box;
}
html,body{
margin: 0;
padding: 0;
background-color: #F7F8F9;
height: 100vh;
font-family: 'Open Sans';
}
button{
border-radius: 0;
width: 100%;
height: 50%;
}
button[type="submit"] {
-webkit-appearance:none; -webkit-border-radius:0;
}
button i{
float: right;
padding-right: 30px;
margin-top: 3px;
}
button.a{
background-color: #1aaaf8;
}
button.b{
background-color: #00cbca;
}
#tip{
text-align: left;
color: #c0c9ce;
font-size: 14px;
}
#hostname{
position: absolute;
bottom: 100px;
right: 0;
left: 0;
color: #8f9ea8;
font-size: 14px;
}
#content-container{
z-index: 2;
position: relative;
margin: 0 auto;
display: table;
padding: 10px;
max-width: 940px;
height: 100%;
}
#content-container-center{
display: table-cell;
text-align: center;
}
#content-container-center h3{
color: #254356;
}
#choice{
transition: all 300ms linear;
line-height: 1.3em;
display: inline;
vertical-align: middle;
font-size: 3em;
}
#choice a{
text-decoration:none;
}
#choice a:hover, #choice a:focus{
outline:0;
text-decoration:underline;
}
#choice button{
display: block;
height: 80px;
width: 330px;
border: none;
color: white;
text-transform: uppercase;
font-size:18px;
font-weight: 700;
margin-top: 10px;
margin-bottom: 10px;
text-align: left;
padding-left: 50px;
}
#choice button.a:hover{
background-color: #1488c6;
}
#choice button.b:hover{
background-color: #00a2a1;
}
#choice button.a:focus{
background-color: #1488c6;
}
#choice button.b:focus{
background-color: #00a2a1;
}
#background-stats{
z-index:1;
height:100%;
width:100%;
position:absolute;
}
#background-stats div{
transition: width 400ms ease-in-out;
display:inline-block;
margin-bottom:-4px;
width:50%;
height:100%;
}