-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (91 loc) · 1.52 KB
/
styles.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1 {
font-size: 45px;
}
.main {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
padding-top: 10%;
}
.input-block {
width: 50%;
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}
.input-field {
flex: 1;
height: 50px;
border-radius: 5px;
border: #ccc 1px solid;
outline: none;
margin-right: 20px;
font-size: 16px;
}
.btn {
min-height: 50px;
padding: 15px 35px;
cursor: pointer;
font-size: 16px;
background-color: rgb(52, 50, 50);
color: rgb(231, 229, 229);
border: none;
transition: background-color 0.4s ease;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
.btn:hover {
opacity: 0.8;
}
.list-container {
width: 50%;
}
ol {
padding-left: 10px;
}
li {
font-size: 16px;
padding-left: 10px;
margin-bottom: 10px;
}
.item {
max-width: 70%;
}
.list-flex,.btn-flex {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
}
.btn.done, .btn.delete {
padding: 10px 20px;
min-height: 30px;
}
.btn.done {
background-color: rgb(44, 150, 115);
margin-right: 20px;
}
.btn.delete {
background-color: rgb(226, 30, 138);
}
.checked {
width: 30px;
height: 30px;
border: #000 1px solid;
border-radius: 5px;
position: absolute;
left: -50px;
background-image: url(/check-line.svg);
background-size: 80%;
background-repeat: no-repeat;
background-position: center;
}