-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
64 lines (54 loc) · 869 Bytes
/
styles.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
body {
font-size: 100%;
margin: 0;
font-family: 'Roboto', sans-serif;
color: rgb(53, 52, 52);
width: 310px;
min-height: 600px;
background-color: white;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 15px;
}
form {
padding: 0 5px 5px 5px;
}
.headline {
padding: 15px 10px 1px 10px;
margin-bottom: 5px;
font-family: 'Roboto';
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(53, 52, 52);
color: white;
}
.info-link {
position: fixed;
top: 5px;
right: 5px;
}
img.icon {
width: 48px;
height: 48px;
padding-right: 0.5rem;
}
img.info {
width: 32px;
height: 24px;
}
.option {
margin-bottom: 0.5em;
padding-top: 0.3em ;
padding-bottom: 0.3em;
}
.option:focus, .option:hover {
background-color: rgb(211, 227, 240);
border-radius: 2px;
}
.small-font-size {
font-size: 12px;
}