-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (76 loc) · 1.27 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
83
84
85
86
87
88
89
* {
font-family: "Gamja Flower", cursive;
font-weight: 600;
}
body {
margin: 0;
background-color: white;
background-repeat: no-repeat;
background-size: cover;
}
.container {
background-image: url(images/pink.png);
min-height: 100vh;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
max-width: 800px;
border-top: 10px solid blanchedalmond;
border-bottom: 10px solid blanchedalmond;
height: 100%;
min-height: 100vh;
}
.inputArea {
margin-bottom: 30px;
position: relative;
}
.taskArea {
border: 5px solid white;
}
.taskTabs {
display: flex;
position: relative;
}
.taskTabs div {
padding: 1rem;
cursor: pointer;
}
#underline {
top: 52px;
left: 0;
height: 5px;
position: absolute;
background-color: coral;
width: 60px;
padding: 0;
transition: 0.3s;
}
.task {
display: flex;
justify-content: space-between;
width: 100%;
padding: 1rem;
border-top: 1px solid white;
position: relative;
}
.task button {
border-radius: 5px;
}
.taskDone {
text-decoration: line-through;
}
button {
background-color: #04aa6d;
border: none;
color: white;
width: 30px;
height: 30px;
text-align: center;
text-decoration: none;
display: inline-block;
}
#addButton {
border-radius: 5px;
}
#taskInput {
width: 80%;
border: none;
}