-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (121 loc) · 2.29 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
* {
margin: 0%;
padding: 0%;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Akaya Telivigala', cursive;
text-transform: capitalize;
font-size: 1rem;
margin-top: 1em;
background-size: cover;
background-color: rgb(255, 175, 143);
}
header {
text-align: center;
padding: 1em;
display: flex;
justify-content: space-around;
}
header img {
width: 2rem;
height: 2rem;
margin-left: 1em;
}
.container {
color: #ad3006;
width: 35rem;
margin: 1em;
}
.input {
border-radius: 2rem 2rem;
padding: 0.5em;
margin: 1em;
background-color: rgb(255, 239, 239);
}
#input-text {
text-align: center;
color: #721f04;
}
.input-text-box {
display: flex;
justify-content: center;
}
.add {
background-color: blanchedalmond;
border: 2px solid white;
cursor: pointer;
width: 5em;
height: 3em;
box-shadow: 5px 10px 20px lightsalmon inset;
opacity: 0.8;
}
.add:hover{
opacity: 1;
}
#input-text {
width: 80%;
border: none;
outline: none;
}
.list-container {
margin: 1em;
background-color: rgb(255, 239, 239);
border-radius: 2rem 2rem;
padding: 1em;
}
.card-header {
display: flex;
justify-content: space-between;
text-transform: uppercase;
font-weight: bolder;
padding: 0.8rem;
margin: 1em;
box-shadow: 5px 10px 20px #f9ccac inset;
border-radius: 1em;
}
#deleteAll {
color: #721f04;
background-color: #f9ccac;
cursor: pointer;
padding: 0.3em;
background-color: blanchedalmond;
border: 2px solid #f9ccac;
border-radius: 7px;
box-shadow: 5px 10px 20px lightsalmon inset;
outline: 3px solid white;
opacity: 0.7;
}
#deleteAll:hover {
opacity: 1;
}
.fas {
margin-left: 0.5em;
}
ol li.checked {
padding: 1em;
margin: 1em;
border: 1px solid #f9ccac;
box-shadow: 5px 10px 20px #f9ccac inset;
overflow-wrap: break-word;
}
.close {
float: right;
cursor: pointer;
box-shadow: 5px 10px 20px #f9ccac inset;
width: 1.5em;
height: 1.5em;
border-radius: 1.5em;
text-align: center;
}
@media screen and (max-width: 470px) {
.container {
width: 90%;
}
.notes{
display: none;
}
}