Skip to content

Commit

Permalink
style: 🎨 Alteração na estilo de apresentar
Browse files Browse the repository at this point in the history
  • Loading branch information
joifogaca committed Apr 26, 2024
1 parent aecd8c2 commit b4fc9fb
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 4 deletions.
1 change: 1 addition & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"src/assets"
],
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.scss"
],
"scripts": []
Expand Down
6 changes: 3 additions & 3 deletions src/app/app.component.html
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>
Binary file added src/assets/img/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 35 additions & 1 deletion src/styles.scss
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;
}

0 comments on commit b4fc9fb

Please sign in to comment.