-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-do-list.css
136 lines (120 loc) · 2.48 KB
/
to-do-list.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
@keyframes rotate {
0% {
transform: rotate(0deg);
} 50% {
transform: rotate(180deg);
}
}
body {
font-family: Arial, Helvetica, sans-serif;
background: rgb(15, 15, 15);
color: rgb(220, 220, 220);
display: flex;
flex-direction: column;
align-items: center;
}
.css-para-container,
.css-elements {
width: 577px;
border-radius: 10px;
padding: 5px 10px;
}
.css-text {
margin-right: 3px;
align-items: center;
font-size: 15px;
border: 2px solid black;
padding: 5px 2px;
border-radius: 4px;
}
.css-title {
padding: 7.3px 2px;
}
.css-title::placeholder {
font-size: 17px;
font-weight: bold;
}
.css-date {
padding: 6px 2px;
}
.css-add-button {
font-size: 18px;
background-color: rgb(102, 148, 102);
color: white;
padding: 7.5px 2px;
border: none;
border-radius: 4px;
box-shadow: 0px 0px 5px gray;
cursor: pointer;
transition: border-radius 0.15s, box-shadow 0.01s, opacity 0.15s;
}
span {
font-weight: bolder;
margin-right: 5px;
animation: rotate 3s backwards;
}
.js-loader {
animation: rotate 2s infinite;
}
.css-add-button:hover {
border-radius: 8px;
opacity: 0.9;
}
.css-add-button:active {
box-shadow: none;
}
.text-title {
font-size: 20px;
font-weight: bold;
}
.ontype-title {
color: red;
font-size: 15px;
font-style: italic;
margin: 0px;
margin-left: 30px;
}
.div-records-button {
font-size: 18px;
font-weight: bolder;
width: auto;
background-color: rgb(156, 43, 43);
color: white;
padding: 5px 0px;
border: none;
border-radius: 4px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.div-records-button span {
transition: transform 0.2s ease-in, opacity 0.2s ease-in;
}
.js-delete {
font-weight: 400;
opacity: 0;
animation: rotate 2s backwards;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(156, 43, 43);
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.div-records-button:hover .js-delete {
opacity: 1;
animation: rotate ;
}
.css-para-container,
.css-elements {
align-items: center;
display: grid;
grid-template-columns: 211px 140px 110px 100px;
margin: 10px 2px;
row-gap: 15px;
column-gap: 5px;
}