-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (72 loc) · 1.56 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
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Just+Another+Hand&display=swap');
body {
background: url(./img/bg-img.jpg);
background-size: contain;
}
h1 {
font-family: "Fredericka the Great", serif;
font-weight: 600;
font-style: normal;
color: aliceblue;
text-align: center;
font-size: 40px;
}
.input-container{
text-align: center;
}
.task-input{
height: 29px;
border-radius: 5px;
border: solid rgb(1, 73, 1);
width: 30%;
margin-right: 10px;
margin-bottom: 15px;
}
.action-btn{
height: 30px;
border-radius: 5px;
border: solid rgb(1, 73, 1);
font-family: "Fredericka the Great", serif;
font-weight: 600;
font-style: normal;
font-size: 20px;
margin: 5px;
cursor: pointer;
}
.list-container {
border: none;
box-shadow: 0 0 10px 0 gray;
width: 80%;
margin: 20px auto;
padding: 15px;
border-radius: 10px;
height: 430px;
background: rgba(255, 255, 255, 0.8);
overflow-y: scroll;
}
.todo-item {
border: none;
box-shadow: 0 0 5px 0;
margin: 15px;
border-radius: 10px;
font-size: 25px;
padding: 5px 20px;
background-color: aliceblue;
font-family: "Indie Flower", cursive;
font-weight: 700;
font-style: normal;
position: relative;
}
.del-img{
height: 30px;
right: 10px;
bottom: 10px;
}
.del-btn{
height: 30px;
position: absolute;
right: 10px;
bottom: 9px;
cursor: pointer;
}