Feat(style.css): finished CSS

This commit is contained in:
Matheus Brollo Dauter 2022-10-12 00:12:45 -03:00
parent 08ae9e293d
commit 3d53f32de9
5 changed files with 20 additions and 13 deletions

@ -0,0 +1 @@
Subproject commit 89ee7124acf39f95e55dd0e21f2aa8b5918c7fbe

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -12,7 +12,7 @@
<article>
<div class="home">
<header>
<a href="#"><img src="assets/Logo-M3Academy 1 (1).svg" alt="Logo-M3Academy"></a>
<a href="#"><img src="assets/Logo-M3Academy 1 (1).png" alt="Logo-M3Academy"></a>
</header>
</div>

View File

@ -2,6 +2,21 @@
/* Começar Css por Header e img1 */
h1 {
font-family: Arial, Helvetica, sans-serif;
* {
margin: 0px;
padding: 0px;
}
header {
background-color: black;
text-align: center;
min-height: 10px;
padding: 18px;
}
.home img {
max-width:160px;
max-height:110px;
width: auto;
height: auto;
}