This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
98 lines (90 loc) · 1.5 KB
/
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
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
body {
background: #EEEEEE;
}
p {
font-size: 1.4em;
line-height: 1.4em;
}
.main {
width: 70%;
margin:0 auto;
}
.header {
margin-top: 0.8em !important;
color: #333333;
font-size: 3.5em;
text-align: center;
width: 80%;
margin:0 auto;
}
.query {
margin-top: 0.3em !important;
margin-top: 2em;
font-size: 5em;
width: 40%;
margin:0 auto;
border-top-style: hidden;
border-right-style: hidden;
border-left-style: hidden;
border-bottom-style: solid;
border-bottom-width: 0.075em;
border-bottom-color: #504543;
background: #EEEEEE;
}
.query:focus {
outline: none;
}
.query:empty:before {
content: attr(placeholder);
}
.golden_char,
.golden_report {
color: #7BB31A;
}
.good_char,
.good_report {
color: #333333;
}
.warning_char,
.warning_report {
color: #FFA500;
}
.bad_char,
.bad_report {
color: #FF0000;
}
.report {
margin-top: 2em !important;
width: 100%;
margin:0 auto;
text-align: center;
}
.secondary {
text-align: center;
width: 100%;
margin-top: 0.5em !important;
margin:0 auto;
}
.generate {
font-size: 2em;
cursor: pointer;
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
display: inline-block;
text-align: center;
}
.candidate {
margin-left: 1em;
font-size: 2em;
width: 20ch;
display: inline-block;
}
.footer {
font-size: 2.5em;
position: fixed;
left: 0;
bottom: 20px;
width: 100%;
text-align: center;
}