-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (56 loc) · 1.14 KB
/
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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');
.add-button, .input-button {
font-family: 'Comfortaa', cursive;
padding: 6px;
margin: 15px;
border-color: #243B4A;
border-style: solid;
border-radius: 10px;
background: none;
color: #243B4A;
cursor: pointer;
outline: none;
}
.add-button:hover {
background-color: rgba(36, 59, 74, 0.358);
}
.form {
display: inline;
}
.input {
font-family: 'Comfortaa', cursive;
padding: 6px;
margin: 6px;
border-color: rgba(0, 0, 0, 0.249);
border-style: solid;
border-radius: 10px;
background: none;
color: #243B4A;
outline: none;
}
.list {
padding: 0;
align-items: center;
}
.list-item {
margin: 10px auto;
text-align: left;
list-style: '✨';
font-size: 14px;
padding-left: 6px;
max-width: 200px;
}
.list-paragraph {
margin: 30px;
text-align: center;
}
.main {
text-align: center;
justify-content: center;
display: flex;
font-family: 'Comfortaa', cursive;
background: rgba(250, 247, 232, 0.879);
}
.main-section {
margin: 60px auto;
}