-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
78 lines (66 loc) · 1.3 KB
/
estilos.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
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background: #e9e9e9;
color: #2e2e2e;
font-family: Arial, helvetica, sans-serif;
}
.contenedor {
width: 90%;
max-width: 1000px;
margin: auto;
}
h1 {
margin: 20px 0;
text-align: center;
font-family: "Oswald", Arial, helvetica, sans-serif;
color: #ce7f08;
font-weight: normal;
}
.contenedor .articulos {
margin-bottom: 20px;
}
.contenedor .articulos ul {
list-style: none;
}
.contenedor .articulos ul li {
/*background: #fff;*/
padding:15px 10px;
border-bottom: 1px solid #c8c8c8;
}
.paginacion ul {
list-style: none;
}
.paginacion ul li {
display: inline-block;
margin-right: 10px;
}
.paginacion ul .active a {
background: #ce7f08;
}
.paginacion ul .disabled {
background: #c8c8c8;
display: inline-block;
font-family: "Oswald", Arial, helvetica, sans-serif;
padding: 15px 25px;
cursor:not-allowed;
color:#fff;
text-decoration: none;
}
.paginacion ul li a {
display: inline-block;
font-family: "Oswald", Arial, helvetica, sans-serif;
padding: 15px 25px;
background: #424242;
color:#fff;
text-decoration: none;
}
.paginacion ul li a:hover {
text-decoration: none;
background: #3299bb;
}