-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Titulos a cada sección con responsive. ajustes de contenidos en los a…
…partados Unete, Soon, Faq y eventos. navbar funcional. secciones Unete y Soon con responsive
- Loading branch information
Showing
10 changed files
with
94 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
interface Props { | ||
titulo: string; | ||
} | ||
const { titulo } = Astro.props | ||
--- | ||
<section> | ||
<h1 class="titulo">{titulo}</h1> | ||
<div class="underline"></div> | ||
</section> | ||
|
||
<style> | ||
.titulo { | ||
color: #035B98; | ||
font-size: 90px; | ||
font-family: "Cousine", monospace; | ||
line-height: 1; | ||
text-align: right; | ||
padding-top: 4rem; | ||
padding-bottom: 1rem; | ||
padding-right: 1rem; | ||
|
||
} | ||
.underline | ||
{ | ||
margin-right: 2rem; | ||
width: 150px; | ||
float: right; | ||
border: 10px solid #035B98; | ||
} | ||
|
||
@media screen and (max-width:800px) | ||
{ | ||
.titulo | ||
{ | ||
text-align: left; | ||
} | ||
.underline | ||
{ | ||
float: left; | ||
position: relative; | ||
left: 5%; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters