-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (65 loc) · 1.15 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
*{
margin:0%;
padding:0%;
}
body{
background-color:antiquewhite;
}
.container{
background-color: white;
width:70%;
margin:auto;
min-height: 100vh;
padding:30px;
box-sizing: border-box;
}
h1{
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
margin:30px;
}
form{
display: flex;
flex-direction: column;
}
input,textarea,button{
padding:10px;
border:1px solid rgba(0,0,0,0.2);
font:100 1.1rem sans-serif;
border-radius:5px;
outline:none;
margin:10px;
}
button{
background-color: rgb(50,50,50);
color:white;
cursor:pointer;
}
button:hover{
background-color:lightsalmon;
}
.task{
background-color: rgb(247,247,247);
font:100 1.1rem sans-serif;
padding:30px;
color:rgba(0,0,0,0.868);
display: flex;
align-items: center;
margin: 2vmax;
}
.task > div{
width:100%;
}
.task span{
color:black;
}
.deletebtn{
border-radius: 100%;
width:30px;
height: 30px;
font-size: 1.6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: crimson;
}