-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilos.css
119 lines (101 loc) · 1.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
h1 {
color: red;
}
article li {
color: #00f;
}
article li strong {
color: #000;
}
aside {
float: left;
width: 30%;
clear: both;
}
section {
float: left;
width: 70%;
}
#formacion {
float: left;
width: 50%
}
#experiencia {
float: left;
width: 50%;
}
article li .actual {
font-weight: bolder;
font-size: 1.2em;
}
nav ul {
padding: 0;
}
nav ul li {
display: inline;
}
nav ul li a {
font-family: Arial;
font-size: 11px;
text-decoration: none;
float: left;
padding: 10px;
background-color: #2175bc;
color: #fff;
}
nav ul li a:hover {
background-color: #2586d7;
margin-top: -2px;
padding-bottom: 12px;
}
footer {
clear: both;
background-color: yellow;
overflow: hidden;
border: 2px solid black;
width: 100%;
}
@media screen and (min-width: 601px) and (max-width: 1000px){
body {
font-family: Arial, sans-serif;
}
aside {
float: left;
width: 40%;
clear: both;
}
section {
float: left;
width: 60%;
}
#formacion {
width: 100%;
}
#experiencia {
width: 100%;
}
}
@media screen and (max-width: 600px){
body {
font-family: Arial;
}
aside {
float: left;
width: 100%;
clear: both;
}
section {
float: left;
width: 100%;
}
#formacion {
width: 100%;
}
#experiencia {
width: 100%;
}
}
header {
background-color: #f48fb1;
border: 2px solid black;
}