C2MV commited on
Commit
07b3c64
·
verified ·
1 Parent(s): 31f89e3

Update static/css/index.css

Browse files
Files changed (1) hide show
  1. static/css/index.css +144 -13
static/css/index.css CHANGED
@@ -1,37 +1,168 @@
1
- /* Estilos generales */
2
- body {
3
- font-family: 'Arial', sans-serif;
4
  margin: 0;
5
  padding: 0;
 
 
 
 
 
6
  background-color: #f4f4f4;
7
  color: #333;
8
  text-align: center;
 
9
  }
10
 
 
11
  header {
12
  background: #2a9d8f;
13
  color: white;
14
- padding: 20px;
15
- font-size: 1.5em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  }
17
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  .hero {
19
  background: #e9c46a;
20
- padding: 40px 20px;
 
21
  }
22
 
23
- .container {
24
- max-width: 800px;
25
- margin: auto;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
 
 
 
 
 
 
28
  .app-embed {
29
- margin: 20px 0;
 
 
 
 
 
 
 
 
30
  }
31
 
32
- iframe {
33
- width: 90%;
34
- max-width: 1000px;
35
  height: 600px;
36
  border: none;
37
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Reset CSS */
2
+ * {
 
3
  margin: 0;
4
  padding: 0;
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ body {
9
+ font-family: 'Arial', sans-serif;
10
  background-color: #f4f4f4;
11
  color: #333;
12
  text-align: center;
13
+ line-height: 1.6;
14
  }
15
 
16
+ /* Header */
17
  header {
18
  background: #2a9d8f;
19
  color: white;
20
+ padding: 15px 0;
21
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
22
+ }
23
+
24
+ header .logo-container {
25
+ display: inline-block;
26
+ }
27
+
28
+ header .logo {
29
+ width: 150px;
30
+ height: auto;
31
+ }
32
+
33
+ header nav ul {
34
+ list-style: none;
35
+ display: flex;
36
+ justify-content: center;
37
+ padding: 0;
38
+ }
39
+
40
+ header nav ul li {
41
+ margin: 0 20px;
42
  }
43
 
44
+ header nav ul li a {
45
+ color: white;
46
+ text-decoration: none;
47
+ font-weight: bold;
48
+ text-transform: uppercase;
49
+ }
50
+
51
+ header nav ul li a:hover {
52
+ text-decoration: underline;
53
+ }
54
+
55
+ /* Hero Section */
56
  .hero {
57
  background: #e9c46a;
58
+ padding: 60px 20px;
59
+ color: #2a9d8f;
60
  }
61
 
62
+ .hero h1 {
63
+ font-size: 2.5em;
64
+ margin-bottom: 10px;
65
+ }
66
+
67
+ .hero p {
68
+ font-size: 1.2em;
69
+ margin-bottom: 20px;
70
+ }
71
+
72
+ .cta-button {
73
+ background-color: #2a9d8f;
74
+ color: white;
75
+ padding: 10px 20px;
76
+ text-decoration: none;
77
+ font-weight: bold;
78
+ border-radius: 5px;
79
+ transition: background-color 0.3s ease;
80
  }
81
 
82
+ .cta-button:hover {
83
+ background-color: #21867a;
84
+ }
85
+
86
+ /* App Embed Section */
87
  .app-embed {
88
+ margin: 40px 0;
89
+ padding: 20px;
90
+ background-color: #fff;
91
+ }
92
+
93
+ .app-embed h2 {
94
+ margin-bottom: 20px;
95
+ font-size: 1.8em;
96
+ color: #333;
97
  }
98
 
99
+ .app-frame {
100
+ width: 100%;
 
101
  height: 600px;
102
  border: none;
103
  }
104
+
105
+ /* Alertas */
106
+ .alertas {
107
+ background-color: #f4f4f4;
108
+ padding: 20px;
109
+ margin: 40px 0;
110
+ }
111
+
112
+ .alertas h2 {
113
+ margin-bottom: 20px;
114
+ font-size: 1.8em;
115
+ }
116
+
117
+ .alert-container {
118
+ max-width: 800px;
119
+ margin: auto;
120
+ text-align: left;
121
+ }
122
+
123
+ .alerta {
124
+ background-color: #ffcc00;
125
+ padding: 15px;
126
+ margin-bottom: 10px;
127
+ border-radius: 5px;
128
+ }
129
+
130
+ .alerta .alerta-titulo {
131
+ font-weight: bold;
132
+ }
133
+
134
+ .alerta .alerta-fecha {
135
+ font-size: 0.9em;
136
+ color: #555;
137
+ }
138
+
139
+ /* Footer */
140
+ footer {
141
+ background: #333;
142
+ color: white;
143
+ padding: 20px 0;
144
+ }
145
+
146
+ footer p {
147
+ margin-bottom: 10px;
148
+ }
149
+
150
+ footer .social-links {
151
+ list-style: none;
152
+ display: flex;
153
+ justify-content: center;
154
+ }
155
+
156
+ footer .social-links li {
157
+ margin: 0 15px;
158
+ }
159
+
160
+ footer .social-links li a {
161
+ color: white;
162
+ text-decoration: none;
163
+ font-size: 1.2em;
164
+ }
165
+
166
+ footer .social-links li a:hover {
167
+ color: #2a9d8f;
168
+ }