-
Notifications
You must be signed in to change notification settings - Fork 0
/
general.css
111 lines (105 loc) · 1.6 KB
/
general.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
@charset "utf-8";
/* CSS Document */
html, body{
height: 100%;
}
.gral{
color: #fff;
height: 100%;
padding: 0;
}
/*
Cabecera
*/
.gral header{
text-align: center;
background-image: url(header-bg.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
padding: 10px 0;
min-height: 70%;
}
.gral header .title-img{
width: 30%;
margin: 20px auto;
}
.gral header .fechas{
margin-top: 50px;
}
.gral header .fechas strong{
color: #E02726;
display: block;
}
.gral .circulos{
margin-top: 70px;
margin-bottom: 25px;
}
.gral .circulos .bg{
width: 50%;
margin: 20px auto;
}
.gral .circulos div[class^='col-md']{
position: relative;
}
.gral .circulos .num{
position: absolute;
left: 0;
right: 0;
top: 32px;
}
.gral .circulos .txt{
position: absolute;
left: 0;
right: 0;
top: 50%;
width: 35%;
font-size: 12px;
margin: 0 auto;
transform: translateY(-32%);
}
.gral .circulos .fa{
font-size: 22px;
}
.alert{
width: 50%;
margin: 0 auto;
}
/*
Formulario
*/
.gral section{
background-color: #293887;
min-height: 70%;
padding: 40px 0;
}
.gral form{
text-align: center;
width: 35%;
}
.gral form .btn-red{
margin-top: 20px;
width: 100%;
color: #fff;
background-color: #DB1715;
}
.gral form .btn-red:hover{
color: #DB1715;
background-color: #fff;
}
/*
Footer
*/
.gral footer{
min-height: 50%;
background-image: url(footer-bg.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
text-align: center;
}
.gral footer .txt{
margin-top: 40px;
}