Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

header pagina de platzi #4

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PLATZIFANS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ Estos son lo Platzifans que están colaborando con esta iniciativa
| Nombre | Cuenta GitHub | Nick Developer |
|---|---|---|
| Carlos Alfonso Garcia Gonzales | [calocaleta](https://github.com/calocaleta) | Calo Caleta |
|Rafael Barreto Camacho|[rafo18](https://github.com/rafo18)|rafo18|

| Rafael Barreto Camacho | https://github.com/rafo18 | rafo18
Binary file added assets/img/m2i8G6H7d3d3H7K9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/notificacion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/searchIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 33 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,41 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlatziFans!</title>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Mono:wght@400;500;700&family=Roboto+Slab:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style/style.css">
<title>Document</title>
</head>
<body>
<header class="header">
<h1>Bienvenido a PlatziFans!</h1>
</header>
<header class="nav-bar">
<section class="nav-logo">

<a href="" class="logo"><img src="https://static.platzi.com/media/[email protected]" alt=""></a>

<a href="" class="platzi"><img src="https://static.platzi.com/media/logotipo-platzi.png" alt=""></a>
</section>

<main class="main">
<p>Este es el lugar donde nos juntamos todos los Fans de Platzi que hemos llevado cursos y queremos ponerlo en práctica.</p>
</main>
<section class="nav-input">
<div class="nav-input-container">
<img src="" alt="">
<input type="text" placeholder="¿Qué quieres aprender?">
</div>
</section>


<section class="nav-iconos">
<ul class="nav-right">
<li><a href="">Cursos</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Comunidad</a></li>
<li><a href="">Agenda</a></li>
<li><a href="">TV</a></li>
<li><a href="">Planes</a></li>
<li class="campana"><a href="">campana</a></li>
<li>puntos</li>
</ul>
</section>
</header>
</body>
</html>
</html>

13 changes: 0 additions & 13 deletions style.css

This file was deleted.

95 changes: 95 additions & 0 deletions style/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}

html {
font-size: 62.5%;
}

.nav-bar {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
justify-content: center;
align-items: center;
height: auto;
width: 100%;
background: #121f3d;
border-bottom: 1px solid #0f1931 ;
padding: 12px;
}
.nav-logo {
display: flex;
justify-items: center;
flex-direction: row;
}

.nav-bar .nav-logo .logo img {
width: 25px;
margin-right: 5px;

}

.nav-bar .nav-logo .platzi img{
width: 60px;
}

.nav-bar .nav-input {
justify-self: end;
justify-content: end;
width: 400px;
height: 35px;
border: 1px solid #40587c;
border-radius: 10px;
display: flex;
justify-items: center;
align-items: center;
padding-right: 5px;
background-color: #03091e;
}

.nav-bar .nav-bar .nav-input-container {
display: flex;
justify-items: center;
align-items: center;
}

.nav-bar .nav-input-container input {
width: 350px;
border: none;
background-color: #03091e;
font-size: 1.5rem;
outline: none;
color: white;

}

.nav-right {
list-style: none;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
font-size: 1.5rem;
color: white;
}

.nav-right li a {
color: white;
text-decoration: none;
font-size: 1.4rem;
font-weight: 600;
}

.nav-right li a:hover {
color: #b7bbc4;
}

.nav-right .campana {
background-image: url('../assets/img/notificacion.png');
background-position: center;
background-size: contain;
background-repeat: no-repeat;
}