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
.post-categoria { | |
width: 100%; | |
margin-top: 2rem; | |
margin-bottom: 2rem; | |
} | |
.post-categoria .item-post { | |
width: 100%; | |
margin-bottom: 1rem; | |
} |
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
<!-- INICIO POST CATEGORIA --> | |
<section> | |
<div class='post-categoria'> | |
<div class='container'> | |
<h2>React Native</h2> | |
<div class="d-flex"> | |
<div class="item-post"> | |
<a href="javascript:void(0)"> |
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
/* BREAKPOINT 576px */ | |
@media (min-width: 36em) { | |
.container { | |
max-width: 540px; | |
} | |
.destaque li figcaption h3 { | |
color: #fff; | |
font-size: 2em; | |
} |
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
/* MAIN */ | |
main { | |
width: 100%; | |
margin-top: 2rem; | |
} | |
.d-flex { | |
display: flex; |
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
<!-- INICIO MAIN --> | |
<main> | |
<!-- INICIO ULTIMOS POSTS --> | |
<section> | |
<div class='ultimos-posts'> | |
<div class='container'> | |
<div class='d-flex'> | |
<h2>Últimos Posts</h2> |
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
.container { | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} | |
/* BREAKPOINT 576px */ | |
@media (min-width: 36em) { |
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
* { | |
box-sizing: border-box; | |
font-family: "Source Sans Pro", sans-serif; | |
} | |
header { | |
width: 100%; | |
background: #7159c1; | |
text-align: center; | |
padding-top: 0.4rem; |
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
<!-- INICIO HEADER --> | |
<header> | |
<img src="img/logo.png" alt="RockeSeat"> | |
</header> | |
<!-- FIM HEADER --> |
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
<!DOCTYPE html> | |
<html lang="pt_BR"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>RocketBlog - o Blog da RockeSeat</title> | |
<meta name="robots" content="index, follow" /> | |
<!-- Favicon --> |
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
pointer-events: none; | |
cursor: default; |