-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.css
80 lines (70 loc) · 1.31 KB
/
todo.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
html {
font-size: 16px;
}
body {
font-size: 100%;
font-family: 'Roboto', arial, sans-serif;
background: url(background2.jpg) no-repeat center center fixed;
background-size: cover;
}
.container {
margin-top: 5rem;
margin-right: auto;
margin-left: auto;
overflow: hidden;
max-width: remy(420px);
background: #fff;
border-radius: $radius;
box-shadow: 0 1px 3px rgba(0,0,0,.025), 0 3px 6px rgba(0,0,0,.065);
}
.input-group {
height: 10em;
display: flex;
align-items: center;
justify-content: center
}
.form {
height: 30%;
width: 40%;
border: 0;
text-align: center;
font-size: 20px;
background-color: rgba(255, 255, 255, 0.8);
}
.button {
height: 30%;
width: 12%;
border: 0;
color: #fff;
background-color: rgba(189, 241, 134, 0.6);
}
.list {
overflow: hidden;
align-items: center;
justify-content: center;
list-style-type: none;
padding-left: 21%;
padding-right: 21%;
overflow: hidden;
}
.item {
padding-top: 0.75rem;
padding-right: 0.75rem;
padding-bottom: 0.75rem;
padding-left: 0.75rem;
width: 100%;
cursor: default;
background-color: rgba(255, 255, 255, 0.6);
color: #0b1a31;
}
.remove {
line-height: 1.45;
color: gray;
cursor: pointer;
transition: color .25s ease-in-out;
float: right;
&:focus,
&:hover {
color: #e53935;
}
}