-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
89 lines (80 loc) · 1.33 KB
/
app.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
* {
margin: 0;
padding: 0;
font-family: "Urbanist", sans-serif;
}
html {
color: #fff;
font-size: 62.5%;
}
body {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 100px;
background-color: #1b1b1d;
}
li {
cursor: pointer;
list-style-type: circle;
margin: 2rem 0;
text-transform: capitalize;
font-weight: 500;
&:hover {
color: #feac6e;
}
}
.main_todo_div {
width: 36rem;
display: grid;
grid-template-columns: 1fr 0.3fr;
align-items: center;
height: auto;
}
button {
height: 5rem;
}
h1 {
font-size: 3.6rem;
margin-top: 4.8rem;
}
hr {
/* margin-top: 2.4rem; */
margin-bottom: 3.2rem;
}
p,
li,
button {
font-size: 1.7rem;
letter-spacing: 0.1rem;
font-family: "Urbanist", sans-serif;
line-height: 1.6;
}
button {
background-color: #f5ee64;
padding: 0.6rem 2.4rem;
border-radius: 10rem;
margin-right: 3.6rem;
cursor: pointer;
transition: all 0.3s linear;
&:hover {
box-shadow: inset 0 0 0 0.2rem #f5ee64;
background-color: transparent;
color: #f5ee64;
}
}
input {
padding: 6px 2px;
min-width: 32rem;
font-size: 18px;
border-radius: 0.6rem;
border: none;
margin-right: 1.2rem;
}
li:hover + .deleteBtn {
box-shadow: inset 0 0 0 0.2rem #f5ee64;
background-color: transparent;
color: #f5ee64;
}