-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (107 loc) · 2.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
:root {
--primary-color: indianred;
}
body {
background-color: var(--primary-color);
}
*,
*:before,
*:after {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
.container {
margin: auto;
min-width: 40vh;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
border:3px solid white;
height: 100vh;
}
.header {
margin:0 0 2rem 0;
color: white;
padding: 1rem;
}
.main{
margin-bottom: 3rem;
display:flex;
justify-content: center;
align-self:center;
}
.textarea {
min-width: 40vh;
padding: 0.5rem 0.5rem;
}
.btn {
margin-left: 2rem;
padding: 0.60rem 1rem;
text-align: center;
color: #ffffff;
border-radius: 5px;
cursor: pointer;
border-color: white;
}
.btn-primary {
background-color: var(--primary-color);
color: white;
}
.error-box {
padding-top: 2rem;
text-align: center;
min-height: 1.5rem;
color: white;
}
.tasks {
min-width: 50vh;
background-color: #ffffff;
-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
padding: 1rem 2rem;
border-radius: 5px;
}
.task {
min-width: 50vh;
background: #ffffff;
min-height:2vh;
padding: 5px 10px;
border-radius: 0px;
margin-top: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
cursor: pointer;
border-bottom: 2px solid #d1d3d4;
}
.task span {
font-family: 'Poppins', sans-serif;
font-size: 15px;
font-weight: 400;
cursor: pointer;
}
.task button {
border: none;
height: 100%;
width: 40px;
color: #ffffff;
border-radius: 5px;
cursor: pointer;
border-color: white;
}
.completed {
text-decoration: line-through;
}
.delete {
background-color: var(--primary-color);
}