-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
88 lines (72 loc) · 1.35 KB
/
Copy pathcustom.css
File metadata and controls
88 lines (72 loc) · 1.35 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
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
.button-not-button {
border: 0px solid transparent;
background-color: transparent;
}
.button-not-button:hover {
opacity: 0.8;
}
#voteResultTableView {
border: 1px solid black;
position: relative;
left: 50%;
transform: translate(-50%, 0);
}
#voteResultTableView>tbody>tr {
border: 1px solid black;
}
#voteResultTableView>tbody>tr>td {
border: 1px solid black;
text-align: center;
font-size: xx-large;
}
#vote-name-view {
text-align: center;
font-size:3em;
}
.vote-instruction {
text-align: center;
font-size: 30pt;
}
#keyPressGuide>li {
font-size: 20pt;
text-align: center;
}
#vote-result-title {
text-align: center;
font-size: 3em;
}
#random-result-title {
text-align: center;
font-size: 3em;
}
.vote-result-action-btn {
width: 450px;
margin: 2% auto;
}
#splash>h1 {
position: relative;
text-align: center;
font-size: 4em;
}
.splash-loading-text {
animation: fadeinandout 3s linear 0s infinite;
}
@keyframes fadeinandout {
from {
opacity: 1;
}
50% {
opacity: 0;
}
to {
opacity: 1;
}
}
#devModeAlert {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
color: red;
display: none;
}