-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·93 lines (82 loc) · 1.27 KB
/
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
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
@charset "UTF-8";
/* CSS Document */
@media screen and (min-width: 979px) {
.servicio{
width: 15%;
float:left;
margin-right: 10px;
margin-left: 10px;
}
.logo {
height: 200px;
}
}
/* Portrait tablet to landscape and desktop */
@media screen and (max-width: 979px) {
.servicio{
width: 17%;
float:left;
margin-right: 30px;
margin-left: 30px;
height: 250px;
}
.logo {
height: 150px;
}
}
/* Landscape phone to portrait tablet */
@media screen and (max-width: 767px) {
.servicio{
width: 80%;
float:left;
text-align:center;
}
.logo {
height: 120px;
}
}
/* Landscape phones and down */
@media screen and(max-width: 480px) {
.servicio{
width: 100%;
float:left;
text-align: center;
}
.logo {
height: 80px;
}
}
.page{
margin: 2px auto;
}
p {
font-family:arial;
font-size:10pt;
color:#FFF;
}
.villa {
width: 100%;
margin: 0 auto;
float: left !important;
padding: 10px;
text-align: center;
}
.villa-container {
margin: 0 auto;
width:70%;
}
.logo {
background-image: url("img/red_libre.png");
background-repeat: no-repeat;
background-size: 100% auto;
position: relative;
top: 0px;
}
.menu{
width: 100%;
margin: 0 auto;
padding: 10px;
}
.text-center {
text-align:center;
}