-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjcp.html
More file actions
194 lines (170 loc) · 5.2 KB
/
jcp.html
File metadata and controls
194 lines (170 loc) · 5.2 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Robotech URJC - Asociación de Estudiantes</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--negro: #121212;
--blanco: #ffffff;
--rojo: #fd0010;
--rojo-oscuro: #c9000c;
--gris: #f5f5f5;
--sombra: rgba(0,0,0,0.2);
}
* {
margin: 0; padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background: var(--gris);
color: var(--negro);
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background: linear-gradient(135deg, var(--rojo), var(--rojo-oscuro));
color: var(--blanco);
text-align: center;
padding: 60px 20px;
}
header h1 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
opacity: 0.9;
}
main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
padding: 50px 20px;
max-width: 1100px;
margin: auto;
}
.cta {
display: flex;
flex-direction: column;
align-items: center;
gap: 25px;
}
.cta-button {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
background: linear-gradient(90deg, var(--rojo), var(--rojo-oscuro));
color: var(--blanco);
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
padding: 20px 40px;
border-radius: 50px;
box-shadow: 0 6px 16px var(--sombra);
transition: transform 0.3s ease, background 0.3s ease;
width: 100%;
max-width: 500px;
text-align: center;
}
.cta-button:hover {
transform: scale(1.05);
background: linear-gradient(90deg, var(--rojo-oscuro), var(--rojo));
}
.projects {
display: flex;
flex-wrap: wrap;
gap: 25px;
justify-content: center;
margin-top: 40px;
}
.project-card {
background: var(--blanco);
border-radius: 20px;
box-shadow: 0 4px 12px var(--sombra);
padding: 25px;
flex: 1;
min-width: 250px;
max-width: 350px;
text-align: center;
transition: transform 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
}
.project-card h3 {
color: var(--rojo);
margin-bottom: 10px;
}
footer {
background-color: var(--gris-medio);
color: var(--negro);
text-align: center;
padding: 20px;
font-size: 0.8rem;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: var(--rojo);
margin: 0 8px;
font-size: 1rem;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: var(--rojo-oscuro);
}
@media (max-width: 768px) {
header h1 { font-size: 2.2rem; }
.cta-button { font-size: 1.2rem; padding: 15px 25px; }
.project-card { min-width: 90%; }
}
</style>
</head>
<body>
<header>
<h1>Robotech URJC</h1>
<p>Asociación de estudiantes de ciencia, tecnología y robótica</p>
</header>
<main>
<section class="cta">
<a href="https://forms.office.com/e/rZxYfwzRNs" target="_blank" class="cta-button">
<i class="fas fa-terminal"></i> ¡Git y Shell scripting, sobrevive en el mundo dev!
</a>
<a href="https://forms.office.com/e/1vMng2vBzd" target="_blank" class="cta-button">
<i class="fas fa-user-graduate"></i> ¡Soy estudiante y quiero unirme!
</a>
<a href="https://forms.office.com/e/C6Q2ACdRB8" class="cta-button">
<i class="fas fa-handshake"></i> Soy una empresa que quiere colaborar con RoboTech
</a>
<a href="proyectos_activos.html" class="cta-button">
<i class="fas fa-robot"></i> Conoce Nuestros Proyectos
</a>
<a href="index.html" class="cta-button">
<i class="fas fa-globe"></i> Visita toda nuestra web
</a>
</section>
<footer id="contact">
<h2>Ponte en contacto con nosotros</h2>
<div class="social-icons">
<a href="https://twitter.com/robotech_urjc"><i class="fab fa-twitter"></i> robotech_urjc</a>
<a href="mailto:asociacion.robotech@urjc.es"><i class="fas fa-envelope"></i> asociacion.robotech@urjc.es</a>
<a href="https://github.com/robotech-urjc"><i class="fab fa-github"></i> robotech-urjc</a>
<a href="https://www.instagram.com/robotech_urjc"><i class="fab fa-instagram"></i> robotech_urjc</a>
<a href="https://es.linkedin.com/company/robotech-urjc"><i class="fab fa-linkedin"></i> robotech-urjc</a>
<a href="https://linktr.ee/Robotech_URJC"><i class="fas fa-info-circle"></i> Más información</a>
</div>
<p>© 2025 Robotech URJC.</p>
</footer>
</body>
</html>