Skip to content

Commit

Permalink
Change main title color
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielShinj1 committed May 22, 2024
1 parent 1ced07c commit 09e46b1
Show file tree
Hide file tree
Showing 14 changed files with 63 additions and 930 deletions.
7 changes: 4 additions & 3 deletions src/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,22 @@ $black: #000;

// scss-docs-start color-variables
$dark-blue: #0a2d61;
$blue: #228ebf;
$blue: #22bf5cc7;
$indigo: #6610f2;
$purple: #6f42c1;
$pink: #d63384;
$red: #dc3545;
$orange: #ff9900;
$light-orange: #f4c57e;
$yellow: #ffdb66;
$green: #198754;
$teal: #20c997;
$cyan: #64c1c7;
// scss-docs-end color-variables

// scss-docs-start theme-color-variables
$primary: $blue;
$secondary: $dark-blue;
$primary: $orange;
$secondary: $light-orange;
$success: $green;
$info: $cyan;
$warning: $orange;
Expand Down
8 changes: 4 additions & 4 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const routes: RouteModel[] = [
path: '',
component: HomeComponent,
data: {
title: 'Projetos em IoT',
title: 'SHARP_PROBE',
background: [
{
src: '/assets/images/home/noite.jpg',
Expand All @@ -22,13 +22,13 @@ const routes: RouteModel[] = [
},
{
src: '/assets/images/home/montanha.jpg',
alt: 'Bixos ingressantes de 2023',
alt: 'Montanha',
},
{
src: '/assets/images/home/quadrado.jpg',
alt: 'Bixos ingressantes de 2023',
alt: 'Quadrados',
},
],
],

Check failure on line 31 in src/app/app-routing.module.ts

View workflow job for this annotation

GitHub Actions / lint_dev (12.x)

Expected indentation of 6 spaces but found 5

Check failure on line 31 in src/app/app-routing.module.ts

View workflow job for this annotation

GitHub Actions / lint_dev (14.x)

Expected indentation of 6 spaces but found 5

Check failure on line 31 in src/app/app-routing.module.ts

View workflow job for this annotation

GitHub Actions / lint_dev (16.x)

Expected indentation of 6 spaces but found 5
},
}

Check failure on line 33 in src/app/app-routing.module.ts

View workflow job for this annotation

GitHub Actions / lint_dev (12.x)

Missing trailing comma

Check failure on line 33 in src/app/app-routing.module.ts

View workflow job for this annotation

GitHub Actions / lint_dev (14.x)

Missing trailing comma

Check failure on line 33 in src/app/app-routing.module.ts

View workflow job for this annotation

GitHub Actions / lint_dev (16.x)

Missing trailing comma
]
Expand Down
4 changes: 2 additions & 2 deletions src/app/core/banner-router/banner-router.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Subscription } from 'rxjs'
templateUrl: './banner-router.component.html',
})
export class BannerRouterComponent implements OnInit, OnDestroy {
currentDarkness: string | number = '55%'
currentDarkness: string | number = '10%'
currentImages: ImageModel[] = []
currentLogo?: ImageModel
currentTitle = ''
Expand All @@ -22,7 +22,7 @@ export class BannerRouterComponent implements OnInit, OnDestroy {
const data: RouteDataModel = (route.state.root.firstChild?.data ??
{}) as RouteDataModel

this.currentDarkness = data.bgDarkness ?? '55%'
this.currentDarkness = data.bgDarkness ?? '10%'
this.currentImages = data.background
this.currentLogo = data.logo
this.currentTitle = data.title
Expand Down
4 changes: 2 additions & 2 deletions src/app/core/groups-panel/groups-panel.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<strong style="font-size: {{ size - 5 }}px">
{{
groups.length === 1
? 'INSTAGRAM DA RECEPÇÃO E GRUPO DOS BIXOS'
: 'INSTAGRAM DA RECEPÇÃO E GRUPO DOS BIXOS'
? 'LOREM IPSUM CARLINHOS'
: 'LOREM IPSUM CARLINHOS'
}}
</strong>

Expand Down
6 changes: 2 additions & 4 deletions src/app/core/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
<section class="text-justify m-auto">
<a id="introducao"></a>

<app-title [subtitle]="true">SSSSSAAAAAAAAAALVE</app-title>
<p>
Davi é um trouxa
</p>
<app-title [subtitle]="true"></app-title>


Frase motivacional:

Expand Down
28 changes: 1 addition & 27 deletions src/app/core/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,5 @@ import { SidebarService } from '@services'
styleUrls: ['./home.component.scss'],
})
export class HomeComponent {
sponsorsImages: ImageGridItemModel[] = [
{
image: {
src: '/assets/images/home/ca-and-ma.svg',
alt: 'Ca and Ma',
caption: 'Ca and Ma',
},
url: 'http://caandma.com.br/',
},
{
image: {
src: '/assets/images/home/cicbeu.svg',
alt: 'CICBEU',
caption: 'CICBEU',
},
url: 'http://www.cicbeu.com.br/',
},
{
image: {
src: '/assets/images/home/roca.svg',
alt: 'roca',
caption: 'Roca Imóveis',
},
url: 'https://roca.com.br/',
},
]
constructor(public sidebarService: SidebarService) {}

Check failure on line 11 in src/app/core/home/home.component.ts

View workflow job for this annotation

GitHub Actions / lint_dev (12.x)

Trailing spaces not allowed

Check failure on line 11 in src/app/core/home/home.component.ts

View workflow job for this annotation

GitHub Actions / lint_dev (14.x)

Trailing spaces not allowed

Check failure on line 11 in src/app/core/home/home.component.ts

View workflow job for this annotation

GitHub Actions / lint_dev (16.x)

Trailing spaces not allowed
}
1 change: 0 additions & 1 deletion src/assets/images/home/ca-and-ma.svg

This file was deleted.

Loading

0 comments on commit 09e46b1

Please sign in to comment.