-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (64 loc) · 1.23 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(169, 188, 189);
display: flex;
justify-content: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.main-container {
background-color: white;
border-radius: 5px;
margin: 25px;
width: 350px;
height: auto;
padding: 25px;
display: flex;
flex-direction: column;
}
form {
margin: 25px 0;
display: flex;
justify-content: flex-start;
align-items: center;
}
form input {
background-color: rgb(169, 188, 189);
border-radius: 5px;
border: none;
height: 30px;
width: 200px;
padding: 10px;
outline: none;
margin-right: 20px;
}
form button {
height: 30px;
width: 30px;
border-radius: 50%;
font-size: 20px;
font-weight: 800;
border: none;
cursor: pointer;
}
button:hover{
background-color: rgb(112, 107, 107);
color: white;
}
.task{
background-color: rgb(169, 188, 189);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
padding: 15px;
margin: 10px 0;
}
.done{
background-color: rgb(102, 114, 114);
text-decoration: line-through;
color:white;
}