Skip to content

Commit

Permalink
Add copyright note to scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
monambike committed Mar 23, 2024
1 parent 3c34ce5 commit 679e53c
Show file tree
Hide file tree
Showing 24 changed files with 574 additions and 3 deletions.
351 changes: 351 additions & 0 deletions src/Monambike.Web/wwwroot/css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Monambike.Web/wwwroot/css/main.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/abstract/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

/* Actually being used on Footer and "Tour" Index Page Section, it
makes possible to have three columns */
.three-columns {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/abstract/variables/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

// Neutral Colors
$COLOR-BLACK: rgba(15, 15, 15, 1);
$COLOR-GRAY-1: rgba(30, 30, 30, 1);
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/abstract/variables/_fonts.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

// Font Family
$font-family-default: 'Arial', sans-serif;

Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/components/_button.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_colors.scss";

a.button {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/components/_images.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

img {
max-width: 100%;
transition: 0.5s;
Expand Down
12 changes: 11 additions & 1 deletion src/Monambike.Web/wwwroot/scss/components/_links.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
@import "../abstract/variables/_colors.scss";
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_colors.scss";

$LINK-COLOR: $COLOR-PURPLE-3;

Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/components/_scrollbar.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_colors.scss";

/* Scrollbar Width */
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/components/_select.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_colors.scss";

select{
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/components/_selection.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../abstract/variables/_colors.scss';

// Change website selection color (when you select a text)
Expand Down
12 changes: 11 additions & 1 deletion src/Monambike.Web/wwwroot/scss/components/_text.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
.reveal__ {
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

.reveal__ {
&translate { // "reveal__translate"
position: relative;
transform: translateY(144px);
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/core/_reset.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

// Text
h1, h2, h3, h4, h5, h6 { margin: 0px; }
p { margin: 0px; }
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/core/_typography.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_fonts.scss";

* { font-family: $font-family-default }
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/_loading.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../abstract/variables/_colors.scss';

.app-format {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_about-me.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../../abstract/variables/_colors.scss';

.site-section {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_contact.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../../abstract/variables/_colors.scss';

.site-section--contact {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_home.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../../abstract/variables/_colors.scss';
@import '../../abstract/variables/_fonts.scss';

Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_presentation.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../../abstract/variables/_colors.scss";

.site-section {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_social-media.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../../abstract/variables/_colors.scss";

.site-section {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_tour.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../../abstract/variables/_colors.scss';
@import '../../abstract/variables/_fonts.scss';

Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/pages/home/_warning.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import '../../abstract/variables/_colors.scss';

.warning {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/shared/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_colors.scss";

.footer {
Expand Down
10 changes: 10 additions & 0 deletions src/Monambike.Web/wwwroot/scss/shared/_header.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* Vinicius Gabriel Personal Website
* Author: Vinicius Gabriel
* Contact: contact@monambike.com
* Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
* This website and its contents are protected by copyright law. Unauthorized
* reproduction or distribution of this material without express and written
* permission from the author is strictly prohibited.
**/

@import "../abstract/variables/_colors.scss";

.header {
Expand Down

0 comments on commit 679e53c

Please sign in to comment.