-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (73 loc) · 1.38 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
78
79
80
81
82
83
84
85
86
87
88
* {
margin: 0px;
padding: 0px;
}
input[type='text'] {
appearance: none;
height: fit-content;
width: 75%;
background-color: #edeef0;
border: none;
outline:none;
border-radius: 3rem;
padding: 0.8rem 3.8rem 0.8rem 0.8rem;
font-weight: bold;
font-size: larger;
text-align: start;
}
.plus{
height: 48px;
width: 48px;
border-radius: 50%;
border: none;
background-color: green;
text-align: center;
position: relative;
bottom: 3rem;
left: 26.5rem;
cursor: pointer;
}
.add{
margin-top: 6px;
margin-right: 6px;
height: 1.5rem;
width: 1.5rem;
font-size: 2rem;
font-weight: bolder;
}
.box{
text-align: center;
margin: 2rem auto 0 auto;
border: 1px solid black;
height: fit-content;
width: 500px;
padding: 2rem 0px;
box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
border-radius: 2rem;
background-color: rgb(200, 224, 239);
}
.task {
height: fit-content;
width: 75%;
margin: 1rem auto 0 auto;
text-align: start;
padding: 1rem;
display: flex;
justify-content: space-between;
opacity: 0.7;
background-color:#39b0ff ;
border:none;
font-weight: bold;
font-size: larger;
}
.task-delete{
text-decoration: line-through;
}
.icon{
font-size: 1.5rem;
position: relative;
z-index: 12;
}
.hidden{
display: none;
}