-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
78 lines (67 loc) · 1.08 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
html {
font-family: ui-monospace, "SF Mono", Consolas, "Roboto Mono", "Noto Mono",
"Microsoft Yahei", monospace, ui-sans-serif, sans-serif;
}
body {
height: 100%;
background-color: #eceff4;
color: #2e3440;
}
a,
a:visited {
color: #5e81ac;
text-decoration: none;
}
a::after {
content: "°";
}
.header {
font-size: 32px;
margin: 16px;
font-weight: bold;
color: #5e81ac;
}
#subs,
#quick {
font-size: 20px;
margin: 16px;
}
.inlineh {
font-weight: bold;
color: #5e81ac;
}
.notes {
font-size: 16px;
margin: 8px;
color: #4c566a;
}
#wrapper {
position: relative;
top: 25%;
text-align: center;
display: block;
}
.query {
border: 1px solid #5e81ac;
font-size: 20px;
padding: 5px 6px;
text-align: left;
width: 60%;
max-width: 600px;
height: 28px;
background: #eceff4;
}
.submit {
height: 40px;
border: 1px solid #5e81ac;
font-size: 20px;
background: #5e81ac;
color: #eceff4;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: 100%;
}