-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (63 loc) · 1.16 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
body {
text-align: center;
font-family: "Georama", sans-serif;
background-color: rgb(10, 20, 29);
/* color: white; */
}
.todo-container {
width: 40%;
height: 50%;
box-shadow: 0 4px 8px 0 rgb(255, 255, 255);
background-color: white;
position: absolute;
top: 20%;
left: 30%;
right: 30%;
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
button {
/* color: white; */
border: 0px;
background-color: transparent;
}
#list-container {
height: 70%;
width: 90%;
margin-top: 2%;
overflow: auto;
}
.todo {
display: flex;
justify-content: space-evenly;
margin: 20px 40px;
border-radius: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
background-color: white;
align-items: center;
}
.todo p {
width: 80%;
}
.todo button {
}
#add-todo {
border: 0;
width: 80%;
padding: 10px 10px 5px 5px;
outline: 0px;
transition: 0.2s cubic-bezier(0.25, 0.1, 0, 0.8);
border-bottom: 2px solid darkblue;
}
input:hover {
border-bottom: 2px solid darkblue;
}
input:focus-visible {
border-bottom: 2px solid darkblue;
}
.search-bar {
width: 60%;
box-shadow: 7px 4px 20px 0px rgb(0 0 0 / 20%);
}