-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
142 lines (117 loc) · 2.17 KB
/
index.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
130
131
132
133
134
135
136
137
138
139
140
141
142
@import url("https://fonts.googleapis.com/css?family=Indie+Flower:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Nanum+Myeongjo:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Fugaz+One:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,500,700");
body {
background-color: rgb(255, 252, 247);
}
body,
button,
select,
option,
input {
font-family: "Fugaz One";
font-weight: 400;
font-size: 0.8em;
color: rgb(69, 30, 17);
}
select,
option {
font-size: 0.7em;
}
textarea,
input {
font-family: "Inconsolata";
}
#response {
margin: 2vh 4vw 2vh 1vw;
border-left: 3px solid darksalmon;
padding-left: 1vw;
font-family: "Nanum Myeongjo";
font-weight: 700;
font-size: 1.2em;
line-height: 1.8em;
color: black;
overflow-wrap: break-word;
}
#response_metrics {
font-family: "Indie Flower";
color: black;
}
#clocks_outer {
display: none;
color: black;
margin-top: 2vh;
margin-bottom: 2vh;
}
#reset {
display: none;
margin-top: 2vh;
color: black;
}
#clocks {
font-size: 2em;
}
#powered_by {
font-size: 0.85em;
}
#response_cont {
display: none;
}
#with_id_cont {
display: none;
}
#motd_cont_outer {
margin-top: 4vh;
width: 33%;
}
#motd_cont {
font-family: "Nanum Myeongjo";
font-weight: bold;
}
#model_desc_outer {
margin-top: 2vh;
width: 30%;
}
#model_desc {
margin: 2vh 0 2vh 0;
padding: 1vh 1vw 1vh 1vw;
border-radius: 0.5em;
background-color: rgb(255, 242, 229);
font-family: "Inconsolata";
font-weight: bold;
display: none;
}
#options_outer {
margin-top: 1vh;
margin-bottom: 2vh;
}
#response_cont {
margin-bottom: 3vh;
}
#model_sel_cont {
margin-top: 2vh;
margin-bottom: 2vh;
}
#with_id_cont {
font-family: "Inconsolata";
font-size: 60%;
}
#processing_span {
display: none;
}
#perma_ele_cont {
display: none;
}
#options_cont {
margin: 1vh 1vw 1vh 0;
font-family: "Inconsolata";
}
@media screen and (max-width: 640px) {
#model_desc_outer {
width: 95%;
}
#motd_cont_outer {
width: 95%;
}
}