-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappToDoList.css
More file actions
79 lines (67 loc) · 1.25 KB
/
Copy pathappToDoList.css
File metadata and controls
79 lines (67 loc) · 1.25 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
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background: #FAFAFA;
font-family: arial, helvetica, sans-serif;
font-size: 16px;
}
.wrap {
margin: auto;
max-width: 100%;
width: 90%;
}
.principal {
background: #212121;
border-top: 20px solid #1ed760;
color: #fff;
padding: 50px 0;
width: 100%;
border-bottom: 20px solid #1ed760;
}
.principal .formulario {
color: #212121;
text-align: center;
}
.principal .formulario input[type=text] {
margin-bottom: 20px;
padding: 10px;
width: 100%;
}
.principal .formulario input[type=text].error {
border: 5px solid #1ed760;
color: red;
}
.principal .formulario .boton {
background: none;
border: 1px solid #1ed760;
color: #fff;
display: inline-block;
font-size: 16px;
padding: 15px;
}
.principal .formulario .boton:hover {
border: 1px solid #1ed760;
color: #1ed760;
}
/* - Tareas - */
.tareas .lista {
list-style: none;
}
.tareas .lista li {
border-bottom: 1px solid #1ed760;
}
.tareas .lista li a {
color: #212121;
display: block;
padding: 30px 0;
text-decoration: none;
}
.tareas .lista li a:hover {
text-decoration: none;
color: #1ed760;
}