Skip to content

Commit 41a9be1

Browse files
committed
video y pagina de login
1 parent c1abc4b commit 41a9be1

File tree

4 files changed

+50
-2
lines changed

4 files changed

+50
-2
lines changed

css/style.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,19 @@ body {
165165
color: var(--bs-light);
166166
}
167167

168+
.login-link {
169+
color: #2c5530 !important; /* Dark green text */
170+
background-color: var(--bs-light); /* Cream background from your theme */
171+
border-radius: 4px;
172+
margin-left: 8px;
173+
transition: all 0.3s ease;
174+
}
175+
176+
.login-link:hover {
177+
background-color: #8b9e6e; /* Lighter green on hover */
178+
color: var(--bs-light) !important; /* Cream text on hover */
179+
}
180+
168181
/*** Hero Section ***/
169182
.hero-section {
170183
min-height: 95vh; /* This makes it take full viewport height */
@@ -793,6 +806,11 @@ section {
793806
height: 40px;
794807
}
795808

809+
.login-link {
810+
margin: 8px 0;
811+
text-align: center;
812+
}
813+
796814
.section-header {
797815
top: 56px;
798816
padding: 0.75rem;

img/thumbnail.jpg

237 KB
Loading

stratum.html

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
/*** Section Headers ***/
3939
.section-header {
4040
position: sticky;
41-
top: 70px;
41+
top: 100px;
4242
background: var(--bs-dark);
4343
padding: 2rem 0;
4444
margin-bottom: 0;
4545
z-index: 1020;
46-
padding: 2.75rem;
46+
padding: 2.5rem;
4747
margin: 0;
4848
z-index: 1020;
4949
width: 100%;
@@ -71,6 +71,19 @@
7171
z-index: -1;
7272
}
7373

74+
.small-video-container {
75+
width: 100%;
76+
max-width: 600px; /* ajustar este numerin para hacer el video mas grande o pequeño */
77+
margin: 0 auto;
78+
}
79+
80+
.custom-video-player {
81+
width: 100%;
82+
height: auto;
83+
border-radius: 8px;
84+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
85+
}
86+
7487
@media (max-width: 991px) {
7588
.section-header {
7689
top: 56px;
@@ -180,6 +193,12 @@
180193
<span class="english-text">Features</span></a
181194
>
182195
</li>
196+
<li class="nav-item">
197+
<a class="nav-link text-special py-2 login-link" href="/Stratum/login/login.html" target="_blank"
198+
>Iniciar Sesión <span class="d-none d-md-inline">/</span>
199+
<span class="english-text">Login</span></a
200+
>
201+
</li>
183202
</ul>
184203
</div>
185204
</div>
@@ -188,6 +207,17 @@
188207

189208
<section class="hero-section text-center d-flex align-items-center">
190209
<div class="container">
210+
<div class="small-video-container mb-4">
211+
<video
212+
controls
213+
preload="none"
214+
poster="img/thumbnail.jpg"
215+
class="custom-video-player"
216+
>
217+
<source src="video/Teaser_compressed.webm" type="video/webm" />
218+
Your browser does not support the video tag.
219+
</video>
220+
</div>
191221
<h1 class="display-4 mb-4">Stratum</h1>
192222
<p class="lead text-special">
193223
Un juego de cartas donde el equilibrio del ecosistema está en juego.

video/Teaser_compressed.webm

17.6 MB
Binary file not shown.

0 commit comments

Comments
 (0)