-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (112 loc) · 2.16 KB
/
styles.css
File metadata and controls
112 lines (112 loc) · 2.16 KB
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
body{
background-color: darkslategray;
margin: 0;
padding: 0;
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
font-family: 'Ubuntu', sans-serif;
}
address{
margin-top: 10px;
text-align: center;
font-size: 30px;
line-height: 30px;
color: white;
font-style: normal;
}
.content{
width: 700px;
background-color: white;
margin-right: auto;
margin-left: auto;
margin-top: 10px;
border: 1px solid darkgrey;
}
.cardContent{
padding: 45px 25px;
border-bottom: 1px solid darkgrey;
}
.cardTitle{
display: block;
font-size: 40px;
font-weight: 500;
}
.taskForm{
margin-top: 45px;
display: flex;
flex-direction: column;
}
.taskInput, .filterTasks{
width: 100%;
border: none;
border-bottom: 2px solid gray;
outline: none;
font-size: 20px;
font-weight: 300;
}
.taskAddButton{
margin-left: -10px;
font-size: 20px;
font-weight: 400;
outline: none;
border: none;
color: white;
border-radius: 5px;
margin-top: 20px;
height: 50px;
width: 150px;
background-color: darkslategray;
}
.cardAction{
padding: 0 25px 35px 25px;
}
.taskTitle{
font-size: 40px;
font-weight: 400;
margin: 25px 0;
}
.collection{
list-style: none;
display: flex;
flex-direction: column-reverse;
padding: 0;
margin: 20px 0;
}
.collectionItem{
margin: 2px 0;
padding: 15px 15px;
border: 1px solid darkgrey;
display: flex;
overflow-wrap: anywhere;
}
.deleteItem{
order: 999;
margin-left: auto;
width: 60px;
height: 30px;
font-size: 20px;
text-align: center;
border: none;
outline: none;
border-radius: 5px;
background-color: darkred;
color: white;
}
.deleteItem:hover{
cursor: pointer;
}
.removeTasks{
margin-bottom: 35px;
text-decoration: none;
font-size: 20px;
font-weight: 400;
outline: none;
border: none;
color: white;
background-color: black;
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
border-radius: 5px;
display: block;
}