-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (124 loc) · 2.48 KB
/
Copy pathstyle.css
File metadata and controls
133 lines (124 loc) · 2.48 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
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.section-todo-list{
max-width: 650px;
margin: 0 auto;
text-align: center;
}
.section-todo-list h2{
font-size: 42px;
margin: 20px;
}
.input-btn{
display: flex;
margin-bottom: 10%;
}
.input-btn input{
width: 78%;
height: 34px;
border-radius: none;
border-color: #32e7ff;
font-size: 19px;
padding-left: 17px;
border-radius: 10px 0 0px 10px;
}
.input-btn button{
width: 20%;
height: 40px;
border-color: #32e7ff;
background-color: #32e7ff;
color: #fff;
text-transform: uppercase;
font-size: 15px;
font-weight: 600;
cursor: pointer;
border-radius: 0 10px 10px 0;
}
.input-btn button:hover{
background-color: #fff;
color: #32e7ff;
transition: all 0.5s 0s ease;
}
.input-btn button:not(:hover){
transition: all 0.5s 0s ease;
}
.list-tasks{
margin-bottom: 11%;
}
.list-tasks ul{
padding-left: 0;
margin: 0 13px;
}
.list-tasks li{
font-size: 21px;
display: flex;
justify-content: space-between;
margin-bottom: 16px;
text-align: left;
padding: 10px 15px;
border-radius: 10px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.list-tasks li:first-letter{
color: #32e7ff;
text-transform: uppercase;
}
.list-tasks li span{
background-color: #32e7ff;
border-radius: 50%;
padding: 1px 8px;
color: #fff;
cursor: pointer;
height: 26px;
}
.list-tasks li span:hover{
background-color: red;
}
/*remove all btn*/
.remove-all{
border-radius: none;
border-color: #32e7ff;
background-color: #32e7ff;
color: #fff;
text-transform: uppercase;
font-size: 15px;
font-weight: 600;
cursor: pointer;
padding: 9px 16px;
border-radius: 10px;
}
.remove-all:hover{
background-color: #fff;
color: #32e7ff;
transition: all 0.5s 0s ease;
}
.remove-all:not(:hover){
transition: all 0.5s 0s ease;
}
/*responsive*/
@media only screen and (max-width: 768px){
.section-todo-list{
width: 90%;
}
}
/* validation message */
.error {
color: red;
text-align: left;
background-color: #ffe5e5;
padding: 2px 13px;
border: solid 2px red;
border-radius: 2px;
}
p.author {
display: flex;
justify-content: center;
margin-top: 3%;
gap: 7px;
}
p.author a {
text-decoration: none;
font-weight: 700;
color: #000;
}