Skip to content

Commit

Permalink
Primer commit
Browse files Browse the repository at this point in the history
  • Loading branch information
elmerd22 committed Sep 26, 2024
0 parents commit 35dbf08
Show file tree
Hide file tree
Showing 49 changed files with 861 additions and 0 deletions.
17 changes: 17 additions & 0 deletions assets/css/banner/baner-imagen.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.banner__imagen{
background: url('../../img/banner.png') no-repeat center / cover;
width: 100%;
}

@media screen and (min-width:0){
.banner__imagen{
height: calc(100vh - 51px);
}
}


@media screen and (min-width:768px){
.banner__imagen{
height: calc(100vh - 72px);
}
}
25 changes: 25 additions & 0 deletions assets/css/banner/banner-titulo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.banner__titulo{
color: #fdfdfd;
font-family: Pacifico, cursive;

position: absolute;
left: 50%;
text-shadow: 0 4px 4px rgba(0, 0, 0, 0.75);
top: 50%;
text-align: center;
transform: translate(-50%, -50%);
width: 100%;

}

@media screen and (min-width:0) {
.banner__titulo{
font-size: 3rem;
}
}

@media screen and (min-width:768px) {
.banner__titulo{
font-size: 5.0625rem;
}
}
3 changes: 3 additions & 0 deletions assets/css/banner/banner.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.banner{
position: relative;
}
22 changes: 22 additions & 0 deletions assets/css/cabecera.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.cabecera {
align-items: center;
background: #f9f9f9;
display: flex;
justify-content: space-between;
padding-left: 2rem;
padding-right: 2rem;
}

@media screen and (min-width:0) {
.cabecera{
padding: 0 1rem;
justify-content: center;
}
}

@media screen and (min-width:768px) {
.cabecera{
padding: 0 5rem;
justify-content: space-between;
}
}
11 changes: 11 additions & 0 deletions assets/css/logo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@media screen and (min-width: 0) {
.logo{
display: none;
}
}

@media screen and (min-width: 768px) {
.logo{
display: block;
}
}
3 changes: 3 additions & 0 deletions assets/css/menu/menu-item.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.menu__item{
list-style: none;
}
17 changes: 17 additions & 0 deletions assets/css/menu/menu-link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.menu__link {
color: #808080;
margin-right: 1.25rem;
text-decoration: none;
}

.menu__link--activo {
color: #333333;
font-weight: bold;
margin-right: 1.25rem;
text-decoration: none;

}

.menu__link:hover {
text-decoration: underline;
}
3 changes: 3 additions & 0 deletions assets/css/menu/menu-lista.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.menu__lista{
display: flex;
}
Loading

0 comments on commit 35dbf08

Please sign in to comment.