-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
96 lines (79 loc) · 1.21 KB
/
style.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
85
86
87
88
89
90
91
92
93
94
95
96
body {
font-family: 'Roboto', sans-serif;
}
header {
margin: 0 auto;
text-align: center;
}
header h1 {
margin-top: 0;
margin-bottom: 0;
}
.watermelon {
width: 5em;
height: 5em;
margin-bottom: 0.5em;
}
.main-container {
margin-top: 20px;
width: 20em;
height: 25em;
margin: 0 auto;
border-radius: 2em;
border: solid 8px #2c3033;
background: white;
box-shadow: 0 0 0px 1px rgba(255, 255, 255, .4), 0 0 0px 3px #2c3033;
overflow: hidden;
position: relative;
}
.center-container {
margin-top: 10%;
}
/*.main-container {
margin: 0 auto;
width: 500px;
text-align: center;
border: gray 1.5px solid;
}
*/
.todo-container {
width: 100%;
padding: 0px;
margin: 0px;
height: 22em;
overflow-y: scroll;
}
ul {
padding: 0px;
}
.list-block {
border-bottom-left-radius: 10px;
height: 50px;
}
/*form*/
.add-todo {
text-align: center;
}
ul li {
list-style-type: none;
margin: 0;
padding: 0;
border-top: solid gray 1.5px;
height: 40px;
text-align: left;
text-indent: 10px;
}
button {
float: right;
}
.fa {
padding: 5px;
font-size: 10px;
width: 10px;
text-align: center;
text-decoration: none;
border-radius: 50%;
}
.fa .fa-trash {
font-size: 50px;
}