-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
169 lines (141 loc) · 2.5 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #003366;
color: #ffffff;
padding: 10px 0;
position: fixed;
width: 100%;
z-index: 1000;
}
header h1 {
margin: 0;
float: left;
}
nav ul {
list-style-type: none;
float: right;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-left: 20px;
}
nav ul li a {
color: #ffffff;
text-decoration: none;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ffcc00;
}
/* Estilos del Hero Section */
.hero {
background-color: #f0f0f0;
padding: 100px 0;
text-align: center;
}
.hero h2 {
font-size: 3em;
margin-bottom: 20px;
}
.hero p {
font-size: 1.2em;
color: #666666;
margin-bottom: 30px;
}
.hero .btn {
display: inline-block;
background-color: #003366;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.hero .btn:hover {
background-color: #ffcc00;
}
/* Estilos del Contact Section */
.contact {
background-color: #003366;
color: #ffffff;
padding: 100px 0;
text-align: center;
}
.contact h2 {
font-size: 3em;
margin-bottom: 20px;
}
.contact p {
font-size: 1.2em;
color: #ffffff;
margin-bottom: 30px;
}
.contact form {
max-width: 600px;
margin: 0 auto;
}
.contact form label {
display: block;
margin-bottom: 10px;
color: #ffffff;
}
.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #cccccc;
border-radius: 5px;
font-size: 1em;
}
.contact form textarea {
resize: vertical;
min-height: 150px;
}
.contact form button {
background-color: #ffcc00;
color: #003366;
border: none;
padding: 10px 20px;
font-size: 1em;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.contact form button:hover {
background-color: #ffffff;
color: #003366;
}
/* Estilos del Footer */
footer {
background-color: #003366;
color: #ffffff;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
}
footer a {
color: #ffffff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}