-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 1.81 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
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
body {
background-color: rgb(22, 33, 62);
color: white;
font-family: Nunito, sans-serif;
font-size: 1.5em;
}
.center {
margin: 30px auto;
text-align: center;
width: 900px;
}
header {
text-align: center;
}
h1 {
color: rgb(233, 69, 96);
}
input {
border-color: rgb(15, 52, 96);
border-radius: 4px;
border-width: 3px;
font-family: Nunito, sans-serif;
font-size: large;
height: 25px;
padding: 2px 8px;
width: 700px;
}
button {
border-color: rgb(233, 69, 96);
border-radius: 5px;
border-width: 3px;
font-family: Nunito, sans-serif;
font-size: medium;
font-weight: 600;
height: 30px;
outline-color: rgb(26, 26, 46);
padding: 0 10px;
vertical-align: middle;
}
.list {
font-family: Roboto Mono, monospace;
margin: auto;
text-align: start;
width: 750px;
}
ol li {
counter-increment: muffins;
display: flex;
justify-content: space-between;
}
ol li:before {
content: counter(muffins) ' 📌 ';
}
.selected:before {
color: rgb(233, 69, 96);
content: counter(muffins) ' 👉 ';
font-weight: 900;
text-shadow: 3px 3px 3px rgb(15, 52, 96);
}
.completed:before {
content: counter(muffins) ' ✅ ';
}
ol {
counter-reset: muffins;
list-style: none;
}
.selected {
background-color: gray;
border-radius: 5px;
padding-left: 10px;
transition: padding 0.3s;
}
.completed {
text-decoration: line-through solid black;
}
.moving {
background-color: rgb(233, 69, 96);
color: black;
border-radius: 5px;
padding-left: 10px;
transition: padding 0.3s;
}
.no-select {
user-select: none;
}
.options {
background-color: rgb(26, 26, 46);
bottom: 0;
left: 0;
padding: 20px 30px;
position: fixed;
right: 0;
}
.options button {
margin: 10px 30px;
margin-right: 10px;
}
.edit-button {
background-color: transparent;
color: white;
border: none;
}