-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.scss
100 lines (89 loc) · 1.42 KB
/
app.scss
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
html {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
background-color: #E2E2E2;
}
#content {
width: 35%;
height: 85%;
margin: 15px auto 0;
text-align: center;
padding: 10px;
border-radius: 5px;
background-color: white;
}
#content-header {
border-bottom: 1px solid gray;
}
#todos-pane {
height: 80%;
margin-bottom: 20px;
overflow: auto;
}
#todos li {
list-style-type: none;
width: 95%;
font-size: 16px;
text-align: left;
margin: 10px 0;
&.priority-task {
color: red;
}
}
input {
border-radius: 5px;
height: 35px;
font-size: 16px;
padding: 10px 15px;
&:focus {
outline: 0;
}
}
.btn {
border-radius: 5px;
padding: 10px 15px;
font-size: 16px;
text-decoration: none;
color: #fff;
position: relative;
display: inline-block;
border: none;
&:focus {
outline: 0;
}
&:active {
transform: translate(0px, 5px);
-webkit-transform: translate(0px, 5px);
box-shadow: 0px 1px 0px 0px;
}
}
.add {
background-color: #2ecc71;
box-shadow: 0px 5px 0px 0px #15B358;
&:hover {
background-color: #48E68B;
}
}
.priority {
background-color: #55acee;
box-shadow: 0px 5px 0px 0px #3C93D5;
margin-left: 15px;
&:hover {
background-color: #6FC6FF;
}
}
.remove {
background-color: #e74c3c;
box-shadow: 0px 5px 0px 0px #CE3323;
margin-left: 15px;
&:hover {
background-color: #FF6656;
}
}
.search-container {
margin: 10px 0;
}