-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (88 loc) · 1.74 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
97
98
99
100
#container {
width: 70vw;
margin: auto;
background-color: #ace2e1;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
padding: 15px;
border-radius: 28px;
margin-top: 40px;
}
.title {
color: white;
}
#todo-input,
#add-task,
#todo-list li {
padding: 10px;
border-radius: 7px;
border: 1px;
}
#todo-input {
background-color: white;
}
#add-task {
background-color: #51829b;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#todo-list {
padding: 0;
}
#todo-list li {
list-style-type: none;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
color: black;
border-radius: 5px;
margin: 10px;
position: relative;
padding-left: 60px;
}
.deleteButton {
background: none;
color: black;
border: 1px solid transparent;
border-radius: 1px solid transparent;
cursor: pointer;
height: 25px;
width: 25px;
font-size: 18px;
cursor: pointer;
}
.check-item {
type: checkbox;
left: 3px;
position: absolute; /* Setăm poziționarea absolută pentru a le plasa în fața li */
z-index: 1;
width: 20px;
height: 20px;
outline: none;
border: 2px solid #888; /* Conturul checkbox-ului */
-webkit-appearance: none; /* Modifica aspectul standard al unui checkbox */
-moz-appearance: none; /* Modifica aspectul standard al unui checkbox */
appearance: none;
border-radius: 10px;
border: 2px solid #ccc;
outline: none;
cursor: pointer;
}
.check-item:checked {
background-color: #51829b;
border-color: #5e729d;
}
img {
width: 20px;
display: flex;
justify-content: center;
align-items: center;
padding-right: 500px;
}
.viwed {
text-decoration: line-through;
}
.gif:hover {
animation-play-state: paused;
}