-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
164 lines (146 loc) · 2.77 KB
/
style.css
File metadata and controls
164 lines (146 loc) · 2.77 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
body {
background-color: white;
min-height: 100vh;
font-size: 1.2rem;
font-family: 'Roboto Condensed', sans-serif;
color: rgb(43, 40, 41);
}
.container {
width: 97%;
/*height: 500px;*/
margin: 50px auto;
background-image: url(./assets/img/paperbackground.jpg);
-webkit-box-shadow: 4px 6px 14px 0px rgba(191, 181, 191, 1);
-moz-box-shadow: 4px 6px 14px 0px rgba(191, 181, 191, 1);
box-shadow: 4px 6px 14px 0px rgba(191, 181, 191, 1);
}
.container__header {
font-family: 'Roboto Condensed', sans-serif;
font-size: 2rem;
text-shadow: 3px 3px 4px white;
text-align: center;
padding-top: 1rem;
padding-bottom: 1rem;
border-bottom: 2px solid rgba(224, 67, 33, 0.7);
margin-bottom: 0;
width: 100%;
color: rgb(43, 40, 41);
}
/*take out?*/
.todoform {
display: flex;
}
.todoform__input {
border: none;
border-radius: 4px;
padding-left: 2%;
height: 50px;
margin: 0 auto;
margin-left: 4%;
font-size: 20px;
font-style: italic;
max-width: 73%;
}
.todoform__button {
background-color: inherit;
border: 0px;
font-size: 2.5rem;
padding-bottom: 3px;
padding-right: 0.8rem;
font-weight: 900;
}
.todo {
padding-left: 0;
margin-top: 0;
margin-bottom: 0;
}
ul{
margin: 0;
padding-left: 0;
}
.todo__List {
line-height: 50px;
border-top: 2px solid rgb(89, 168, 218);
display: flex;
list-style: none;
box-sizing: border-box;
}
.todo__List__span {
width: 80%;
overflow-wrap: break-word;
padding-left: 5%;
}
.todo__List__button--del, .todo__List__button--mark {
background-color: inherit;
border: none;
font-size: 40px;
}
.todo__List__button--del {
color: rgb(224, 67, 33);
padding-right: 10px;
}
.todo__List__button--mark {
color: rgb(89, 168, 218);
;
padding-right: 35px;
}
.footer {
height: 70px;
text-align: center;
padding: 2%;
}
.fa-check {
width: 9px;
}
.sort {
font-family: 'Roboto Condensed', sans-serif;
width: 35%;
color: white;
font-size: 1.2em;
margin-top: 2%;
background-color: rgba(89, 168, 218, 0.7);
border-style: none;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 10px;
}
.completed {
text-decoration: line-through;
color: rgb(127, 130, 139);
}
@media screen and (min-width: 600px) {
body {
font-size: 1.8rem;
}
.container {
max-width: 600px;
}
h1 {
font-size: 3rem;
font-weight: 400;
}
li {
padding-left: 6%;
}
.todo__List__span {
padding-right: 20px;
}
.todoform__input {
width: 63%;
height: 50px;
margin-left: 10%;
}
.todoform__button {
padding-right: 2.3rem;
color: rgba(43, 40, 41, 0.9);
}
.todo__List__button--del {
color: rgb(224, 67, 33);
padding-right: 20px;
}
.todo__List__button--mark {
color: rgb(89, 168, 218);
;
padding-right: 60px;
}
}