-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustom.css
84 lines (69 loc) · 1.18 KB
/
custom.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
/* Fonts */
h1, h2, h3, h4, h5 {
font-family: 'Staatliches', 'Patua One', Helvetica, Arial, sans-serif;
}
body {
font-family: 'Fira Sans', sans-serif;
}
code, kbd, pre, samp, textarea {
font-family: 'Fira Mono', 'Source Code Pro', monospace;
}
/* Sizes */
label {
font-size: 14px;
}
textarea {
font-size: 14px;
}
@media only screen and (max-width: 1200px) {
label {
font-size: 12px;
}
textarea {
font-size: 12px;
}
}
@media only screen and (max-width: 1100px) {
label {
font-size: 12px;
}
textarea {
font-size: 10px;
}
}
body {
background-color: #F0F0F0;
}
h1, h2, h3, a {
color: darkblue;
}
.imprint {
font-size: 12px;
line-height: 16px;
}
#copied {
font-size: 12px;
color: darkblue;
}
.checkmark {
font-family: 'Fira Sans', sans-serif;
font-size: 8px;
font-weight: bold;
background-color: #a0a0a0;
color: #ffffff;
padding: 2px;
position: relative;
bottom: 4px;
}
#container {
border-style: solid;
border-width: 2px;
border-color: darkblue;
padding-left: 20px;
padding-right: 20px;
display: flex;
flex-wrap: wrap;
}
input[type=number]{
width: 40px;
}