forked from fack2/ToDoList-R.S.R.Y-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (59 loc) · 1 KB
/
Copy pathstyle.css
File metadata and controls
62 lines (59 loc) · 1 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
@import url(https://fonts.googleapis.com/css?family=Roboto:500, 700);
header {
text-align: center;
color: #435757;
margin-top: 50px;
}
body {
background: white;
font: 500 1.2em/1.2 "Roboto", sans-serif;
height: 100%;
background-color: rgba(153, 132, 132, 0.2);
}
.todo-container {
border: 1px solid;
border-radius: 10px;
width: 57%;
margin: 3% auto;
padding-top: 20px;
background: linear-gradient(-20deg, #d0b782 20%, #a0cecf 80%);
}
li {
display: grid;
margin-right: 5%;
border-top: 1px dashed white;
grid-template-columns: repeat(10, 0.4fr);
text-decoration: none;
}
button {
border-radius: 5px;
}
.material-icons {
margin: -30%;
width: 25px;
height: 25px;
}
.cBox {
margin: auto;
border-radius: 5px;
width: 25px;
height: 25px;
}
.extBox {
margin: auto;
grid-column: span 7;
width: 100%;
height: 30px;
font-size: 20px;
}
.editBox {
width: 25px;
height: 25px;
margin: auto;
}
.deleteBox {
width: 25px;
height: 25px;
margin: auto;
float: right;
}