-
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.
style: 🎨 Alteração na estilo de apresentar
- Loading branch information
Showing
4 changed files
with
39 additions
and
4 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,11 +1,11 @@ | ||
<nav class="navbar navbar-expand-lg bg-body-tertiary"> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-primary"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="#">Marvel</a> | ||
<a class="navbar-brand text-white" href="#">Marvel</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" | ||
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
</div> | ||
</nav> | ||
<router-outlet> | ||
</router-outlet> | ||
</router-outlet> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 +1,43 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
|
||
/* Importing Bootstrap SCSS file. */ | ||
@import 'bootstrap/scss/bootstrap'; | ||
@import '../node_modules/bootstrap/scss/functions'; | ||
@import '../node_modules/bootstrap/scss/variables'; | ||
@import '../node_modules/bootstrap/scss/mixins'; | ||
|
||
|
||
|
||
$gray-100: #6280a7; | ||
$gray-200: #334c71; | ||
$gray-300: #273a53; | ||
$gray-400: #14293d; | ||
$gray-500: 14293d; | ||
$gray-700: #27313f; | ||
$primary: #27313f; | ||
$secondary: #aa0505; | ||
$body-bg: #ffffff; | ||
$body-color: #fffeee; | ||
$font-family-sans-serif: "Comfortaa", sans-serif; | ||
$font-family-base: "Red Hat Display", sans-serif; | ||
|
||
$theme-colors: ( | ||
"primary": $primary, | ||
"secondary": $secondary | ||
); | ||
|
||
@import 'bootstrap/scss/bootstrap.scss'; | ||
|
||
|
||
|
||
body { | ||
background-image: url('./assets/img/background.jpg'); | ||
background-size: cover; /* Para garantir que a imagem cubra todo o fundo */ | ||
background-repeat: no-repeat; /* Para evitar a repetição da imagem */ | ||
} | ||
|
||
|
||
img { | ||
height: 250px; | ||
width: 250px; | ||
} | ||
|