Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

Commit

Permalink
Fase 3 - fondo para el header
Browse files Browse the repository at this point in the history
+ Se agrega fondo para el header de las páginas.
No quería ponerle fondo pero me dijeron que lo hiciera. :(
  • Loading branch information
afestupinanp committed Nov 2, 2021
1 parent 185c5bb commit 6c3a526
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion fase3/acerca-de.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</head>
<body>
<header>
<h3 class="centrado">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<nav>
<h3 class="centrado titulo-pagina">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<ul class="nav">
<div class="seccion-normal">
<li class="nav-inicio">
Expand Down
Binary file added fase3/images/header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion fase3/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</head>
<body>
<header>
<h3 class="centrado">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<nav>
<h3 class="centrado titulo-pagina">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<ul class="nav">
<div class="seccion-normal">
<li class="nav-inicio">
Expand Down
2 changes: 1 addition & 1 deletion fase3/recurso-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</head>
<body>
<header>
<h3 class="centrado">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<nav>
<h3 class="centrado titulo-pagina">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<ul class="nav">
<div class="seccion-normal">
<li class="nav-inicio">
Expand Down
2 changes: 1 addition & 1 deletion fase3/recurso-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</head>
<body>
<header>
<h3 class="centrado">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<nav>
<h3 class="centrado titulo-pagina">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<ul class="nav">
<div class="seccion-normal">
<li class="nav-inicio">
Expand Down
10 changes: 8 additions & 2 deletions fase3/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ html {
nav {
display: flex;
flex-direction: column;
background-color: rgb(250, 250, 250);
background: linear-gradient(to top, #b1ffae, rgba(255, 255, 255, 0.0));
align-items: center;
justify-content: center;
align-content: center;
box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.418);
padding-bottom: 10px;
}

.titulo-pagina {
color: rgb(0, 110, 255);
}

ul.nav {
Expand Down Expand Up @@ -185,7 +190,8 @@ header {
display: block;
position: fixed;
width: 100%;
background-color: #b1ffae;
background: url("images/header.png") no-repeat center;
background-size: cover;
}

.contenido {
Expand Down
2 changes: 1 addition & 1 deletion fase3/tema1.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</head>
<body>
<header>
<h3 class="centrado">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<nav>
<h3 class="centrado titulo-pagina">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<ul class="nav">
<div class="seccion-normal">
<li class="nav-inicio">
Expand Down
2 changes: 1 addition & 1 deletion fase3/tema2.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</head>
<body>
<header>
<h3 class="centrado">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<nav>
<h3 class="centrado titulo-pagina">Sintaxis y Selectores CSS e Interacción Humano-Ordenador</h3>
<ul class="nav">
<div class="seccion-normal">
<li class="nav-inicio">
Expand Down

0 comments on commit 6c3a526

Please sign in to comment.