-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (104 loc) · 1.68 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
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
* {
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
margin: 0;
}
.toolbar {
background-color: #f17105;
color: white;
}
.toolbar-title {
margin: 0 16px;
padding: 8px 0;
text-align: center;
}
.form-section {
padding: 16px;
text-align: center;
}
.list-section {
padding: 16px;
}
button {
background-color: #6610f2;
color: white;
border: none;
border-radius: 8px;
padding: 0.5rem 0.9rem;
font-size: 1rem;
font-weight: bold;
letter-spacing: 0.01rem;
}
button:hover {
background-color: #3c0f83;
transition: 0.3s;
cursor: pointer;
}
button:active {
background-color: #3c0f83;
}
input {
background-color: #fafafa;
padding: 0.5rem;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: #f17105;
}
input:focus-visible {
outline: none;
transition: 0.3s;
border-bottom-color: #3c0f83;
}
.ml-2 {
margin-left: 0.5rem;
margin-top: 0.5rem;
}
.to-do-list {
list-style: none;
padding: 0;
}
.to-do-items {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 8px;
border: 1px solid #cfcfcf;
border-radius: 16px;
margin-top: 15px;
}
.to-do-list button {
background-color: #1a8fe3;
}
.to-do-list button:hover {
transition: 0.3s;
background-color: #ff0000;
}
.to-do-list button:active {
background-color: #ff0000;
}
.vertical-middle {
vertical-align: middle;
}
.click-style {
text-align: center;
}
.click-style:hover {
cursor: pointer;
}
.arrow {
transform: rotate(90deg);
transition: transform 0.5s;
}
.rotate-arrow {
transform: rotate(0deg);
transition: transform 0.5s;
}
.list {
display: none;
}
.expanded-list {
display: block;
}