forked from rithmschool/udemy_course_exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
81 lines (72 loc) · 1.27 KB
/
app.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
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700');
body {
font-family: 'Montserrat', sans-serif;
background: #ecf0f1;
}
/*****************************HEADER STYLES*****************************/
header {
text-align: center;
}
header h1 {
font-size: 64px;
font-weight: 300;
margin: 80px 0 25px;
color: #2c3e50;
}
header h1 span {
font-weight: 700;
}
header h2 {
color: #bdc3c7;
font-weight:300;
}
/*****************************FORM STYLES*****************************/
.form {
width: 800px;
margin: 50px auto 20px;
}
#todoInput {
width: 100%;
height: 60px;
background: none;
border: none;
border-bottom: 1px solid #34495e;
outline: none;
font: 300 28px 'Ubuntu', sans-serif;
padding: 20px;
color: #34495e;
}
/*****************************LIST STYLES*****************************/
.list {
width: 800px;
margin: 0 auto;
}
.task {
width: 100%;
height: 60px;
line-height: 60px;
font-size: 20px;
padding: 0 20px;
color: #34495e;
transition: all .3s ease;
}
.task:hover {
background: rgba(0, 0, 0, .02);
cursor: pointer;
}
.task:hover span{
opacity: 1;
}
.done {
text-decoration: line-through;
color: #bdc3c7;
}
li span {
float: right;
color: #c0392b;
transition: all 0.3s;
opacity: 0;
}
li span:hover {
color: #e74c3c
}