-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtoDoList.css
More file actions
81 lines (81 loc) · 1.28 KB
/
toDoList.css
File metadata and controls
81 lines (81 loc) · 1.28 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body {
background-image: linear-gradient(to right, #0ecaf4, #e5e1b7);
}
.mainMenu{
width: 360px;
margin: 100px auto;
}
#header {
background-color: #3163b2;
width: inherit;
height: 40px;
color: white;
text-transform: uppercase;
clear: both;
font-weight: bold;
font-family: Lato;
}
.alignLeft {
margin: 10px;
float: left;
}
.alignRight {
float: right;
margin: 10px;
}
input {
box-sizing: border-box;
background-color: #f7f7f7;
height: 40px;
width: 100%;
padding: 10px;
border: 0px;
}
input:focus {
width: 100%
background-color: white;
color: #3163b2;
outline: 0px;
box-sizing: border-box;
border-width: 2px;
border-style: solid;
border-color: #3163b2;
}
.oneToDo {
height: 40px;
line-height: 40px;
background-color: white;
color: #666;
margin: 0;
padding: 0;
}
.oneToDo:nth-of-type(2n) {
background-color: #f7f7f7;
}
.sideBox {
background-color: #e74c3c;
color: white;
width: 0;
height: 40px;
margin-right: 10px;
display: inline-block;
transition: 0.5s linear;
opacity: 0;
text-align: center;
}
.oneToDo:hover .sideBox{
width: 40px;
opacity: 1.0;
}
.task {
height: 40px;
}
.greyBackground {
background-color: #f7f7f7;
}
.whiteBackground {
background-color: white;
}
.strikeThrough {
text-decoration: line-through;
}