-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
181 lines (158 loc) · 3.64 KB
/
style.css
File metadata and controls
181 lines (158 loc) · 3.64 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: whitesmoke;
}
h1{
font-family:Verdana, Geneva, Tahoma, sans-serif ;
color: rgb(114, 114, 114);
text-shadow: 1px 0.5px rgba(16, 16, 16, 0.844);
font-size: 24px;
padding-bottom: 15px;
}
.containerPpal{
width: 90%;
max-width: 800px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.entryTask{
display: flex;
flex-direction: row;
margin-bottom: 20px;
}
.task{
width: 80%;
max-width: 600px;
display: flex;
gap: 10px;
flex-direction: column;
}
.btnAll{
outline: none;
/* width: 30px; */
border-radius: 30PX;
/* background-color: rgb(52 13 45); */
border: 0.5px groove rgb(114, 114, 114);
padding: 5px;
cursor: pointer;
padding: 8px 12px;
border-style: none;
border: 1px solid rgb(52 13 45);
color: rgb(52 13 45);
box-shadow: 0px 1px 2px 0px rgb(52 13 45);
cursor: pointer;
font-weight: bold;
}
.btnAll:hover{
background-color: #340d2d;
color:aliceblue;
}
.buttonAdd{
outline: none;
width: 30px;
border-radius: 30PX;
border: none;
/* background-color: rgb(180, 101, 166); */
/* border: 0.5px groove rgb(114, 114, 114); */
/* padding: 5px; */
/* font-size: 14px; */
cursor: pointer;
/* background: black url(https://api.iconify.design/ion/add-circle-outline.svg?color=%23b464a6) no-repeat center center / contain; */
background: url('https://api.iconify.design/ion/add-circle.svg?color=%23340d2d') no-repeat center center / contain;
}
.buttonAdd:hover{
background-color: rgb(177 132 169);
}
/* input[type="checkbox"] {
display: grid;
place-content: center;
}
input[type="checkbox"]::before {
content: "";
width: 20px;
height: 20px;
transform: scale(0);
transition: 120ms transform ease-in-out;
box-shadow: inset 1em 1em var(--form-control-color);
}
input[type="checkbox"]:checked::before {
transform: scale(1);
} */
/* .boxTask input:checked ~ .delete{
background-color: black;
} */
.inputTask{
outline: none;
border-radius: 15px;
border: 1px solid #340d2d;
padding: 5px 15px;
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
}
.containerTasks{
width: 100%;
min-width: 250px;
/* padding: 20px 10px; */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-radius: 8px;
background: white;
border-radius: 8px;
box-shadow: rgb(95 19 151 / 24%) 0px 10px 20px;
/* gap: 10px; */
}
.containerTasks.addTask {
padding: 20px 10px;
gap: 10px;
}
.boxTask{
display: flex;
width: 100%;
justify-content: space-between;
flex-direction: row;
/* align-content: center; */
align-items: center;
}
.textTask{
width: 70%;
font-family: cursive;
border-bottom: 1px solid gray;
margin-left: 5px;
margin-right: 5px;
}
.delete{
outline: none;
width: 20px;
max-width: 30px;
height: 30px;
max-height: 40px;
background-color: rgb(107, 77, 102);
border: none;
/* padding: 0px 3px; */
/* border-radius: 2px; */
cursor: pointer;
background: url(https://api.iconify.design/ion/trash.svg?color=%23340d2d) no-repeat center center / contain;
}
.boxButtons {
padding: 10px;
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-between;
align-items: center;
gap: 20px;
}