-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (49 loc) · 956 Bytes
/
style.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
header{
background-color: #f1f1f1;
padding: 20px;
text-align: center;
}
#info-personal, #habilidades{
margin: 2opx;
padding: 20px;
border: 1px solid #ccc;
}
#info-personal h2, #habilidades h2{
font-size: 24px;
}
#habilidades ul{
list-style-type: square;
}
footer{
background-color: #f1f1f1;
color: #333;
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
@media only screen and (max-width: 600px){
header, #info-personal, #habilidades{
padding: 10px;
}
h1, h2{
font-size: 18px;
}
}
@media only screen and (min-width: 601px) and (max-width: 1024px){
header, #info-personal, #habilidades{
padding: 20px;
}
h1, h2{
font-size: 22px;
}
}
@media only screen and (min-width: 1025px){
header, #info-personal, #habilidades{
padding: 30px;
}
h1, h2 {
font-size: 28px;
}
}