-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (115 loc) · 2.19 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
font-family: cursive;
}
body {
background: #eee;
padding: 0 16px;
}
.container {
background:#b4babb;
border-radius: 10px;
box-shadow: 0 2px 5px #ccc;
padding-left: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 150px;
width: 50%;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
float: center;
align-items:center;
}
header {
background-color: #f5ba13;
margin: auto -16px;
padding: 16px 32px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
header h1 {
color: #fff;
font-family: cursive;
font-weight: 200;
text-align: center;
}
.row{
display:flex;
border-radius: 10px;
align-items: center;
justify-content: space-between;
background:#edeef0;
padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
}
input{
flex:1;
position:relative;
border:none;
outline:none ;
background: transparent;
height: 50px;
}
::placeholder {
color:#f5ba13;
opacity: 1;
}
button{
border: none;
position: relative;
outline: none;
padding: 15px 40px;
background:#f5ba13;
color:#eee;
border-radius: 10px;
cursor: pointer;
font-size:16px;
height: 50px;
}
ol li{
list-style: none;
font-size: 17px;
padding: 12px 8px 12px 50px;
user-select: none;
cursor: pointer;
position: relative;
}
ol li.checked{
color:#555;
text-decoration: line-through;
}
ol li span{
position: absolute;
right: 0;
top:5px;
width: 50px;
height: 40px;
font-size: 22px;
line-height: 40px;
column-rule-color: #555;
text-align:center ;
}
ol li span:hover{
background: #edeef0;
}
footer {
position: relative;
text-align: center;
top: 100vh;;
bottom: 0px;
width: 100%;
height: 2.5rem;
}
footer p {
color: #e1ac0b;
}
.todo-list h2{
font-size: 1.1em;
margin-bottom: 6px;
}