-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
49 lines (40 loc) · 1020 Bytes
/
main.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
/* Shared CSS */
@font-face {
font-family: 'Trolley';
src: url("/assets/fonts/Trolley.woff2") format('woff2');
}
#centered-title {
font-family: 'Trolley';
position: relative;
color: white;
text-align: center;
z-index: -1;
}
#question {
font-family: 'Trolley';
color: white;
text-align: center;
}
#result {
font-family: 'Trolley';
color: white;
text-align: center;
}
.dropdown-item:hover {
background-color: #9ceafa !important;
}
/* Prevent blank space in question from showing breaks */
#nobreaks {
letter-spacing: -1px;
display: inline;
}
/* Center input box placeholder */
::placeholder { text-align: center; }
::-webkit-input-placeholder { text-align: center; }
:-moz-placeholder { text-align: center; }
::-moz-placeholder { text-align: center; }
:-ms-input-placeholder { text-align: center; }
::selection { background: rgba(13, 202, 240, 0.5) !important; }
::-moz-selection { background: rgba(13, 202, 240, 0.5) !important; }
/* Center inputted anwse */
#inputAnswer { text-align: center; }