-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (79 loc) · 1.49 KB
/
style.css
File metadata and controls
82 lines (79 loc) · 1.49 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
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
html, body{
width: 100%;
margin: 0 auto;
background-color: #219ebc;
font-family: Oswald;
letter-spacing: 0px;
}
h1{
color: white;
margin: 0px;
text-align: center;
font-size: 65px;
text-decoration: underline;
}
.Container{
margin: 0 auto;
width: 30%;
background-color: #97c7ca; /*just to see where body is*/
border: 5px solid beige;
}
#inputField {
width: 300px;
height: 46px;
border: 1px solid black;
outline: none;
font-size: 25px;
vertical-align: middle;
}
#addToDo{
height: 50px;
width: 75px;
vertical-align: middle;
font-size: 20px;
}
#sortToDo{
vertical-align: middle;
font-size: 20px;
}
#filterToDo{
vertical-align: middle;
font-size: 20px;
}
.to-dos {
margin-top: 10px; /*distance at the top from the inputline and buttons*/
display: flex;
flex-direction: column;
}
.paragraph-styling{ /*a class we will add via js* (tasks)*/
margin: 0;
font-size: 20px;
flex-grow: 1;
}
.removeItemButton-styling{
background-color: rgb(0, 0, 0, 0);
border: none;
cursor: pointer;
}
.row-style {
display: flex;
flex-direction: row;
flex-grow: 1;
align-items: center;
}
.checkBox-style{
cursor: pointer;
}
.Controls{
display: flex;
flex-direction: column;
}
.ControlRow{
justify-content: center;
display: flex;
}
.blue{
width: 100%;
background-color: #023047;
}