-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
70 lines (57 loc) · 852 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 10px;
font-family: "Nunito", "Futura", Trebuchet MS, Arial, sans-serif;
color: white;
}
body {
background-color: rgb(31, 30, 30);
}
div#content {
display: flex;
justify-content: space-around;
padding: 1rem;
}
.container {
min-width: 40vw;
max-width: 45vw;
min-height: 10vh;
padding: 2rem;
background-color: rgb(31, 30, 45);
}
.title {
font-size: 3rem;
padding: 1rem 0rem 1rem 4rem;
background-color: #111;
color: white;
}
.list-title {
font-size: 2.5rem;
}
.input-title {
margin-bottom:1rem;
font-size: 2.5rem;
}
.input-container {
margin-bottom: 1.5rem;
}
input {
max-width: 15rem;
}
button {
min-width: 9rem;
}
.warning {
color: red;
font-size: 1.9rem;
}
ol {
padding-left: 2rem;
}
li {
font-size: 1.75rem;
}