-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
86 lines (82 loc) · 1.23 KB
/
main.css
File metadata and controls
86 lines (82 loc) · 1.23 KB
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
85
86
/* General styles */
* {
box-sizing: border-box;
}
body {
font-family: 'Poiret One', sans-serif;
background-color: #a4ddce;
color: #9b9b9b;
}
h1 {
font-family: 'Sacramento', cursive;
color: #a4ddce;
text-align: center;
}
.container {
background-color: #fff;
width: 80%;
margin: 25px auto;
padding: 30px;
border-radius: 10px;
}
/* Form styles */
.form {
width: 50%;
margin: 50px auto;
}
form input {
width: 300px;
height: 40px;
border-radius: 10px;
border: 2px solid #a4ddce;
font-size: 1.2em;
font-family: 'Poiret One', sans-serif;
color: #9b9b9b;
}
form button {
margin-left: auto;
height: 40px;
width: 120px;
color: #a4ddce;
border: 2px solid #a4ddce;
border-radius: 10px;
background-color: #fff;
font-family: 'Poiret One', sans-serif;
font-size: 1.1em;
}
form button:hover {
background-color: #a4ddce;
color: #fff;
}
p#warning {
padding-left: 10px;
}
/* List styles */
.list {
width: 40%;
margin: 50px auto;
}
.list ul {
list-style: none;
padding: 0;
font-size: 1.2em;
}
.list li, form {
display: flex;
align-items: center;
}
span.delete {
margin-left: auto;
color: #a4ddce;
font-size: 1.5em;
}
/* JS classes */
.delete {
cursor: pointer;
}
.strike {
text-decoration: line-through;
}
.hide {
display: none;
}