-
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.
- Loading branch information
1 parent
e0cc457
commit 202dffd
Showing
5 changed files
with
75 additions
and
27 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
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 |
---|---|---|
@@ -1,22 +1,33 @@ | ||
.language { | ||
margin-bottom: 2rem; | ||
padding: 2rem 0; | ||
button { | ||
flex: 1; | ||
margin: 10px; | ||
margin: 0.5rem; | ||
cursor: pointer; | ||
border: 0; | ||
background: #eee; | ||
padding: 0.5rem; | ||
padding: 0.2rem; | ||
border-radius: 5px; | ||
box-shadow: 0 1px 0 rgba(255, 255, 255, 1), 0 2px 5px rgba(0, 0, 0, 0.2); | ||
font-size: 0; | ||
&.actived { | ||
text-decoration: none; | ||
font-size: 0; | ||
display: inline-flex; | ||
border: 2px solid transparent; | ||
transition: .3s all; | ||
overflow: hidden; | ||
|
||
&.actived, | ||
&:hover { | ||
color: #fff; | ||
background: #2c3e50; | ||
background: #fff; | ||
border: 2px solid #2c3e50; | ||
box-shadow: 0 1px 0 rgba(255, 255, 255, 1), 0 2px 5px rgba(0, 0, 0, 0.2); | ||
transform: scale(1.2); | ||
} | ||
} | ||
|
||
img { | ||
width: 20px; | ||
width: 30px; | ||
pointer-events: none; | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
.about { | ||
padding: 2rem; | ||
margin-top: 2rem; | ||
padding: 4rem; | ||
border-top: 1px solid #eee; | ||
box-shadow: 0 15px 25px rgba(0, 0, 0, .06), 0 -5px 15px rgba(0, 0, 0, .02); | ||
} |
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 |
---|---|---|
@@ -1,27 +1,50 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); | ||
|
||
.slide-title, h3 { | ||
.example { | ||
padding-bottom: 6rem; | ||
padding-top: 2rem; | ||
box-shadow: 0 15px 25px rgba(0, 0, 0, .06); | ||
|
||
&:first-of-type { | ||
margin-top: 2rem; | ||
padding-top: 0; | ||
border-top: 1px solid #eee; | ||
box-shadow: 0 15px 25px rgba(0, 0, 0, .06), 0 -5px 15px rgba(0, 0, 0, .02); | ||
} | ||
} | ||
|
||
.slide-title, | ||
h3 { | ||
align-items: center; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.slide-title svg, h3 svg { | ||
margin-right: .5em; | ||
svg { | ||
margin-right: .5em; | ||
} | ||
} | ||
|
||
.slide-title { | ||
border-top: 3px dashed #ccc; | ||
padding: 2rem 0; | ||
color: #3ea3bf; | ||
font-size: 2em; | ||
margin: 2em 0; | ||
padding-top: 2em; | ||
} | ||
.slide-title svg { fill: #3ea3bf; } | ||
.favela h1 { font-family: 'Great Vibes', cursive; } | ||
.favela img { filter: saturate(2) brightness(1.2); } | ||
@media (max-width: 640px) { | ||
.slide-title { | ||
font-size: 1em; | ||
} | ||
} | ||
|
||
@media (max-width: 640px) { | ||
.slide-title { font-size: 1em; } | ||
svg { | ||
fill: #3ea3bf; | ||
} | ||
} | ||
|
||
.favela { | ||
h1 { | ||
font-family: 'Great Vibes', cursive; | ||
} | ||
|
||
img { | ||
filter: saturate(2) brightness(1.2); | ||
} | ||
} |