-
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.
feat(ReadOurBlog): implemented border to set space
- Loading branch information
1 parent
798b16d
commit 35dcd8a
Showing
2 changed files
with
49 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@import '../../styles/font.scss'; | ||
@import '../../styles/style.scss'; | ||
|
||
.readOurBlog{ | ||
background-color: #fafafc; | ||
|
||
//===ESTILIZAÇÃO DO TÍTULO===== | ||
|
||
border: 2px solid rgba(255, 255, 255, 0); | ||
&-title{ | ||
text-align: center; | ||
|
||
&-h2{ | ||
color: #1d164d; | ||
font-size: 30px; | ||
margin-top: 0; | ||
|
||
} | ||
|
||
&-p{ | ||
color: #9e9baf; | ||
margin: 0; | ||
&-bottom{ | ||
margin: .7rem auto; | ||
|
||
} | ||
} | ||
} | ||
} | ||
|