-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (111 loc) · 1.86 KB
/
styles.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
125
126
127
* {
margin: 0;
padding: 0;
font-family: 'Dosis', sans-serif;
font-size: 16px;
}
main {
background-image: linear-gradient(
109.6deg,
rgba(62, 161, 219, 1) 11.2%,
rgba(93, 52, 236, 1) 100.2%
);
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
form {
width: 100%;
justify-content: space-between;
align-items: center;
display: flex;
margin-bottom: 15px;
}
.mainCard {
width: 40vw;
border-radius: 25px;
background-color: #fff;
padding: 25px;
}
.title {
font-family: 'Dosis', sans-serif;
display: flex;
justify-content: center;
align-content: center;
margin-bottom: 15px;
}
.inputForm {
border: none;
padding: 10px;
border: 1px solid #eee;
outline: none;
width: 65%;
}
.inputForm::placeholder {
padding: 0px;
}
.btnCreate {
padding: 10px 15px;
background-image: linear-gradient(
109.6deg,
rgba(62, 161, 219, 1) 11.2%,
rgba(93, 52, 236, 1) 100.2%
);
border: none;
color: #fff;
border-radius: 5px;
cursor: pointer;
}
.cardsList {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow-y: scroll;
max-height: 60vh;
height: 60vh;
}
.card {
width: 90%;
padding: 15px;
box-shadow: 2px 4px 4px 4px rgba(71, 71, 71, 0.16);
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
margin: 5px 0px;
position: relative;
}
.task {
padding: 10px;
}
.icon {
cursor: pointer;
}
.icon:hover {
color: rgba(62, 161, 219, 1);
}
.completeIcon {
color: rgba(62, 161, 219, 1);
}
.trashIcon:hover {
color: #f00;
}
.deleteConfirmationPop {
position: relative;
background-color: rgba(255, 255, 255);
z-index: 99;
width: 100%;
top: -100px;
left: 0;
}
.deleteSpace {
position: relative;
width: 30%;
}
.noTasks {
font-size: 48px;
}