-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (81 loc) · 1.49 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
@import url("https://fonts.googleapis.com/css?family=Montserrat");
html {
box-sizing: border-box;
background: url("images/rawe.jpg") center no-repeat;
background-size: cover;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-family: "Montserrat", Futura, "Trebuchet MS", Arial, sans-serif;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
.wrapper {
padding: 20px;
max-width: 400px;
background: rgba(245, 245, 245, 0.9);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin: 0;
font-weight: 200;
}
.tasks {
margin: 0;
padding: 0;
text-align: left;
list-style: none;
}
.tasks li {
border-bottom: 1px solid rgba(10, 10, 10, 0.2);
padding: 10px;
display: flex;
}
.tasks li .done {
text-decoration: line-through;
color: rgba(10, 10, 10, 0.2);
}
.tasks label {
flex: 1;
cursor: pointer;
border-right: 1px solid grey;
margin-right: 5px;
}
.add-tasks {
margin-top: 20px;
}
.add-tasks input {
padding: 10px;
outline: 0;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.del {
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
padding: 1px 6px;
margin: auto;
}
.del:hover {
background-color: rgba(250, 1, 1, 0.6);
}
.footer {
background: rgba(255, 255, 255, 0.75);
position: fixed;
bottom: 0;
left: 0%;
right: 0%;
font-size: 0.7em;
cursor: pointer;
}
@media only screen and (max-width: 992px) {
.wrapper {
max-width: 70vw;
}
}