-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (91 loc) · 1.84 KB
/
style.css
File metadata and controls
120 lines (91 loc) · 1.84 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
113
114
115
116
117
118
119
120
html{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height: 100%;
width: 100%;
background: linear-gradient(135deg, #153677, #4e085f);
display: flex;
justify-content: center;
}
.container{
min-width: none;
width: 350px;
/* border: 2px solid red; */
/* text-align: center; */
margin-top: 50px;
/* background-color: burlywood; */
border-radius: 8px;
/* opacity: 4; */
}
h2{
font-size: 30px;
padding-left: 20%;
padding-top: 5%;
}
.box{
/* border: 2px solid red; */
margin: 3px;
width: 100%;
max-width: 500px;
background-color: lightblue;
border-radius: 7px;
min-height: 200px;
}
.row{
/* border: 2px solid red; */
display: flex;
align-items: center;
justify-content: center;
/* padding-left: 15px; */
border-radius: 30px;
margin: 1.5px;
width: 90%;
text-align: center;
padding-left: 20px;
background-color: rgb(233, 230, 230);
margin-left: 7px;
}
input{
flex: 1;
padding: 7px;
border: none;
outline: none;
background: transparent;
}
.button{
border: none;
outline: none;
font-size: 15px;
border-radius: 30px;
padding: 10px;
background-color: rgb(248, 149, 114);
}
ul li{
position: relative;
left: 0;
margin: 5px;
list-style: none;
user-select:none;
cursor: pointer;
font-size: 18px;
padding: 8px
}
ul li span{
position:absolute;
right: 0;
/* top: 1; */
width: 20px;
height: 20px;
font-size: 20px;
color: red;
/* border: 2px solid red; */
border-radius: 50%;
text-align: center;
}
.lists li.checked{
text-decoration: line-through;
color: black;
}