Skip to content
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
74 changes: 74 additions & 0 deletions challenge04.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
.header{
background-color: #4d089a;
color: #ffffff;
display: flex;
font-family: 'Raleway', serif;
flex-direction: column;
}
.header__cabecera{
background-color: darkblue;
color: #ffffff;
text-align: end;
margin: 3px 0px;
}
.header__cabecera a{
color: white;
margin: 2px;
display: inline-block;
}
.header__cabecera a img{
height: 15px;
opacity: 0.5;
}
.header__menutitle{
display: flex;
align-items: center;
justify-content: space-between;
height: 70px;
}
.header__menutitle--1{
color: #ffffff;
text-decoration: none;
margin-left: 20px;
}
.header__menutitle--1 img{
width: 30px;
height: 30px;
}
.header__menutitle--2{
font-size: 20px;
letter-spacing: 1px;
margin-left: -60px;
}
.header__menutitle--3 a{
margin: 5px;
}
.header__menutitle--3 a img{
height: 30px;
width: 30px;
}
.banner{
border: 2px solid #6e6d70;
display: flex;
flex-direction: column;
font-family: 'Raleway', serif;
height: auto;
width: auto;
}
.banner__msg{
font-size: 20px;
margin-left: 10px;
}
.banner__op{
display: flex;
justify-content: flex-end;
margin: 10px;
}
.banner__op a{
color: #4d089a;
font-size: 15px;
font-weight: bold;
margin: 10px;
text-decoration: none;
text-transform: uppercase;
}
34 changes: 34 additions & 0 deletions challenge04.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./challenge04.css">
<title>Challenge04</title>
</head>
<body>
<header class="header">
<div class="header__cabecera">
<a href=""><img src="./rectangle.png" alt="cuadrado"></a>
<a href=""><img src="./circled.png" alt="circulo"></a>
<a href=""><img src="./give-way.png" alt="triangulo"></a>
</div>
<div class="header__menutitle">
<a class="header__menutitle--1" href=""><img src="./menu.png" alt="menu"></a>
<h1 class="header__menutitle--2">My Pictures</h1>
<div class="header__menutitle--3">
<a href=""><img src="./like.png" alt="like"></a>
<a href=""><img src="./menu-2.png" alt="options"></a>
</div>
</div>
</header>
<section class="banner">
<h1 class="banner__msg">Desea ingresar a nuevos contenidos?</h1>
<div class="banner__op">
<a href="">Entrar</a>
<a href="">Salir</a>
</div>
</section>
</body>
</html>
Binary file added challenge04.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 circled.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 give-way.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 like.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 lupa.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 menu-2.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 menu.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 rectangle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.