forked from M3-Academy/practice-time-landing-page
Compare commits
2 Commits
main
...
gustavomac
Author | SHA1 | Date | |
---|---|---|---|
82ae491d3d | |||
628d1555ad |
BIN
assets/images/m3-logo.png
Normal file
BIN
assets/images/m3-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/images/main-banner-mobile.png
Normal file
BIN
assets/images/main-banner-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 332 KiB |
BIN
assets/images/main-banner.png
Normal file
BIN
assets/images/main-banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
19
assets/index.html
Normal file
19
assets/index.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Hora de praticar</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<a href="/">
|
||||
<img src="images/m3-logo.png" alt="m3 logo"/>
|
||||
</a>
|
||||
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
51
assets/styles/style.css
Normal file
51
assets/styles/style.css
Normal file
@ -0,0 +1,51 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
|
||||
}
|
||||
|
||||
.page-header{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background-color: black;
|
||||
padding: 28px 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.header-logo{
|
||||
display: block;
|
||||
|
||||
}
|
||||
|
||||
.main-banner-desktop{
|
||||
width: 100%;
|
||||
|
||||
|
||||
}
|
||||
@media screen and (max-width: 414px) {
|
||||
.main-banner-desktop{
|
||||
display: none;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
.main-banner-mobile{
|
||||
width: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media screen and (min-width: 415px) {
|
||||
.main-banner-mobile{
|
||||
display: none;
|
||||
}
|
||||
}
|
26
index.html
Normal file
26
index.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="assets/styles/style.css">
|
||||
<title>Hora de praticar</title>
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="assets/images/m3-logo.png" alt="m3 logo"/>
|
||||
</a>
|
||||
</header>
|
||||
<main>
|
||||
<div>
|
||||
<img class="main-banner-desktop" src="assets/images/main-banner.png" alt="main-banner">
|
||||
<img class="main-banner-mobile" src="assets/images/main-banner-mobile.png" alt="main-banner-mobile">
|
||||
</div>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user