-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (76 loc) · 1.34 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
html {
background-color: #3A3F41;
}
a {
color: #2188FF;
}
@media only screen and (max-width: 600px) {
.container {
width: 80%;
margin: 0 auto;
margin-top: 100px;
}
.button.archive, .button.done {
width: 45%;
}
.button.trash {
width: 100% !important;
max-width: 100% !important;
}
}
@media only screen and (min-width: 600px) {
.container {
width: 1100px;
margin: 0 auto;
margin-top: 100px;
}
}
.input {
background-color: #3A3F41;
color: white;
}
.input::placeholder {
color: white;
}
.button.archive {
background-color: #F1C40F;
margin: 0 5px;
}
.button.done {
background-color: #28B463;
margin: 0 5px;
}
.button.trash {
background-color: red;
max-width: 40px;
max-height: 30px;
padding: 5px;
}
.button.addTodo {
background-color: #28B463;
margin: 0 5px;
min-width: 100px;
}
.todo-text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 400px;
}
.box.doneTodos, .box.archivedTodos {
background-color: rgba(256, 256, 256, 0.8);
}
.box.doneTodos .doneTodo-text, .box.archivedTodos .archivedTodo-text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 240px;
display: inline;
}
.madeBy {
position: absolute;
right: 40%;
left: 40%;
bottom: 20px;
background-color: rgba(256, 256, 256, 0.8);
}