-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (101 loc) · 1.93 KB
/
styles.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* GLOBAL STYLES */
html {
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
width: 100%;
}
a {
color: gray;
}
a:hover {
color: darkgray;
}
/* todo-list STYLES */
.todo-list-wrapper {
width: 100%;
margin-left:auto;
margin-right:auto;
}
@media screen and (min-width:700px) {
.todo-list-wrapper {
width: 700px;
margin-left:auto;
margin-right:auto;
}
}
/* todo-item STYLES */
.todo-item-wrapper {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
border: 2px solid gray;
margin: 10px;
padding: 5px;
}
.todo-item-text-wrapper {
width: 40%;
text-align: left;
}
.todo-item-text-interior {
width: 90%;
padding-left: 10px;
}
/* todo-finished STYLES */
.todo-finished-wrapper {
width: 100%;
margin-left:auto;
margin-right: auto;
border: 2px solid grey;
padding: 10px 5px;
margin-top: 10px;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.todo-finished-text-wrapper {
color: grey;
text-decoration: line-through;
width: 40%;
text-align: left;
margin: 0px 10px;
}
/* BUTTON STYLES */
.button {
border: 1px solid black;
padding: 7px;
margin: 5px;
border-radius: 3px;
font-weight: bold;
cursor: pointer;
}
.button-done {
color: #48b526;
}
.button-done:hover {
background-color: #48b526;
color: white;
border: 1px solid white;
}
.button-edit:hover {
background-color: #407fc2;
color: white;
border: 1px solid white;
}
.button-delete {
color: #bf2c2c;
}
.button-delete:hover {
background-color: #bf2c2c;
color: white;
border: 1px solid white;
}
.button-add {
color: #8936b3;
}
.button-add:hover {
background-color: #8936b3;
color: white;
border: 1px solid white;
}