-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (121 loc) · 2.32 KB
/
Copy pathstyle.css
File metadata and controls
122 lines (121 loc) · 2.32 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
html {
height: 100%;
min-height: 800px;
}
body {
height: 80%;
display: flex;
justify-content: center;
}
.app {
margin: 50px;
border: 3px solid rgb(134, 131, 131);
padding: 30px;
height: 100%;
max-width: 500px;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: rgb(252, 218, 175);
font-family: 'Montserrat', sans-serif;
}
/* heading */
.heading {
margin: 20px;
padding: 20px;
background-color: blanchedalmond;
text-align: center;
}
.heading__title {
font-family: 'Monoton', cursive;
align-content: center;
font-size: 4rem;
}
.heading__sub-title {
font-size: 1rem;
}
/* todo */
.todo {
margin: 20px;
padding: 20px;
height: 100%;
overflow-y: scroll;
scroll-behavior: smooth;
background-color: blanchedalmond;
}
/* todo scrollbar */
.todo::-webkit-scrollbar { width: 10px;}
.todo::-webkit-scrollbar-track {background: blanchedalmond;}
.todo::-webkit-scrollbar-thumb {background: rgb(233, 209, 173);}
.todo::-webkit-scrollbar-thumb:hover {background: #555;}
.todo__list {
list-style: none;
padding: 0;
}
.todo__item {
margin: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.todo__item:hover {
cursor: pointer;
}
.todo__icon-tick {
font-size: 2rem;
min-width: 50px;
}
.todo__text {
vertical-align: middle;
font-size: 1.6rem;
flex-wrap: nowrap;
}
.todo__text.cross-out {
text-decoration: line-through;
}
.todo__text {
cursor: pointer;
}
.todo__icon-delete {
font-size: 2rem;
min-width: 50px;
text-align: right;
}
.todo__icon-delete {
cursor: pointer;
}
/* new */
.new {
margin: 20px;
padding: 10px;
display: flex;
justify-content: space-between;
background-color: blanchedalmond;
}
.new__form {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
border: none;
}
.new__input {
vertical-align: middle;
margin: 0;
/* box-sizing: border-box; */
width: 95%;
background: transparent;
font-size: 1.6rem;
outline: none;
border: none;
outline-width: 0;
font-family: 'Montserrat', sans-serif;
}
.new__submit {
font-size: 2rem;
min-width: 50px;
text-align: right;
}
.new__submit:hover {
cursor: pointer;
}