-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
163 lines (133 loc) · 2.28 KB
/
index.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
* {
padding: 0;
margin: 0;
}
body {
font-family: 'Josefin Sans', sans-serif;
text-align: center;
width: 85vw;
max-width: 550px;
margin: 0 auto;
background-color: rgb(243, 243, 243);
color: grey;
font-weight: 600;
}
main {
position: relative;
}
.card {
border-radius: 7px;
background-color: white;
}
.item {
height: 55px;
display: flex;
align-items: center;
}
/*#region Background Image*/
#bg-image {
width: 100%;
position: fixed;
top: 0;
left: 0;
}
/*#endregion Background Image*/
/*#region Header*/
header {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 6vh;
}
h1 {
text-align: left;
color: white;
letter-spacing: 0.3rem;
}
#dark-mode {
height: 30px;
width: auto;
}
/*#endregion Header*/
/*#region New To-Do Input*/
#input-field {
display: flex;
justify-content: space-between;
margin-top: 50px;
}
input[type='checkbox'] {
-webkit-appearance: none;
width: 25px;
height: 25px;
margin: 15px;
border-radius: 500px;
border: 1px solid rgb(234, 234, 234);
}
input[type='checkbox']:checked {
background-color: green;
}
#to-do-input {
margin: 0;
padding: 0;
border: none;
flex-grow: 1;
}
#input-field button {
height: 55px;
width: 55px;
color: black;
background-color: white;
font-weight: bold;
border: none;
border-top-right-radius: 7px;
border-left: solid 2px grey;
border-bottom-right-radius: 7px;
}
/*#endregion New To-Do Input*/
/*#region View Selecter*/
#view-select {
display: flex;
justify-content: center;
margin-bottom: 50px;
}
#view-select p {
margin: 0 15px;
font-size: 1.1rem;
}
/*#endregion View Selecter*/
#list-container {
margin: 20px auto;
background-color: white;
}
.to-do-item {
border-bottom: solid 2px rgb(234, 234, 234);
display: grid;
grid-template-columns: 55px auto 50px;
}
.to-do-item p {
text-align: left;
align-self: center;
word-wrap: normal;
}
.to-do-item img {
height: 15px;
margin: auto;
}
#bottom-row {
justify-content: space-between !important;
margin: 0 15px;
color: rgb(185, 184, 184);
}
.completed {
color: rgb(185, 184, 184);
font-weight: 400;
text-decoration: line-through;
}
.pointer:hover {
cursor: pointer;
}
.active {
font-weight: bold;
color: darkcyan;
}