-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (74 loc) · 1.32 KB
/
style.css
File metadata and controls
85 lines (74 loc) · 1.32 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
body {
margin: 0;
}
.note {
background: rgb(190, 174, 221);
padding: 20px 30px;
width: 500px;
margin: auto;
cursor: pointer;
position: relative;
box-sizing: border-box;
color: #4e2222;
font-family: Arial;
border-bottom: 1px solid;
}
.note__delete {
color: #810606;
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
font-family: Helvetica;
}
.note__check {
margin-right: 15px;
}
.form {
width: 500px;
padding: 20px 30px;
margin: auto;
background: #775AB1;
box-sizing: border-box;
position: relative;
}
#input {
width: 100%;
margin: 0 auto 15px;
}
#complete-all {
position: absolute;
left: 6px;
top: 22px;
}
span[class*="setting"] {
display: block;
text-align: center;
color: aliceblue;
text-transform: uppercase;
font: 12px Helvetica;
cursor: pointer;
padding: 3px 0;
}
.setting_selected {
color: aquamarine !important;
}
.note__input {
width: 100%;
}
.note__check {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 6px;
}
.clear-completed {
text-align: center;
display: block;
margin-top: 20px;
text-transform: uppercase;
font: 18px Helvetica;
color: rgb(173, 51, 51);
cursor: pointer;
}