-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atualização: correção d12 - folha de estilo
- Loading branch information
1 parent
95d06ae
commit b54f548
Showing
2 changed files
with
156 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
@charset "UTF-8"; | ||
|
||
* { | ||
margin: 0px; | ||
padding: 0px; | ||
} | ||
|
||
html, | ||
body { | ||
min-height: 100vh; | ||
background-color: tomato; | ||
color: white; | ||
} | ||
|
||
header { | ||
background-color: black; | ||
color: white; | ||
text-align: center; | ||
} | ||
|
||
header > h1 { | ||
padding: 25px; | ||
font-variant: small-caps; /* todas as letras maiúsculas, mas as primeiras maiores que o resto */ | ||
/*text-transform: uppercase;*/ /*todas as letras do mesmo tamanho maiúsculas*/ | ||
} | ||
|
||
header > P { | ||
padding-bottom: 25px; | ||
} | ||
|
||
header a, | ||
footer a { | ||
color: white; | ||
text-decoration: none; | ||
font-weight: bolder; | ||
} | ||
|
||
header a:hover, | ||
footer a:hover { | ||
font-weight: normal; | ||
color: blue; | ||
text-decoration: underline; | ||
} | ||
|
||
section { | ||
padding-top: 10vh; | ||
padding-bottom: 10vh; | ||
padding-left: 30px; | ||
line-height: 2em; | ||
} | ||
|
||
section.normal { | ||
background-color: white; | ||
color: black; | ||
} | ||
|
||
section.imagem > p { | ||
width: 400px; | ||
background-color: rgba(0, 0, 0, 0.53); | ||
} | ||
|
||
section.imagem { | ||
background-color: rgba(0, 0, 0, 0.381); | ||
color: white; | ||
} | ||
|
||
footer { | ||
background-color: black; | ||
color: white; | ||
text-align: center; | ||
padding: 8px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters