-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
57 lines (52 loc) · 1.03 KB
/
main.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
@import url("https://fonts.googleapis.com/css2?family=Baskervville+SC&family=SUSE:[email protected]&display=swap");
p,
h1 {
font-family: "Baskervville SC", serif;
text-transform: capitalize;
}
.text-shadow {
text-shadow: 1px 1px 8px black;
}
.bg {
background: rgb(61, 61, 186);
background: linear-gradient(
198deg,
rgba(61, 61, 186, 0.6831465862712273) 26%,
rgba(34, 140, 210, 0.34421101204153537) 52%,
rgba(62, 187, 75, 0.8624182949547006) 67%
);
}
input[type="checkbox"] {
width: 20px;
height: 16px;
color: blue;
background-color: gray;
border: 3px solid black;
transition: all;
transition-duration: 300;
}
input[type="checkbox"]:hover {
scale: 1.3;
}
.checked {
text-decoration: line-through;
}
.btn-delete {
transition: all;
transition-duration: 400;
}
.btn-delete:hover {
scale: 1.5;
color: rgba(255, 0, 0, 0.7);
}
.btn-edit:hover {
transition: all;
scale: 1.5;
}
.mainDiv {
box-shadow: inset 2px 1px 2px 1px black;
}
#textInput {
box-shadow: 1px 1px 2px 1px indigo;
margin-right: 5px;
}