Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

up date fix v1 #1

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Empty file removed assets/css/footer.css
Empty file.
Empty file removed assets/css/header.css
Empty file.
1,830 changes: 1,830 additions & 0 deletions assets/css/main.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions assets/css/main.css.map

Large diffs are not rendered by default.

1,179 changes: 0 additions & 1,179 deletions assets/css/pages/home.css

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 10 additions & 10 deletions assets/css/common/font.css → assets/css/sass/abstracts/_font.scss
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
/* Montserrat */
@font-face {
font-family: "Montserrat-Black";
src: url("../../fonts/Montserrat/Montserrat-Black.ttf");
src: url("../fonts/Montserrat/Montserrat-Black.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Montserrat-Bold";
src: url("../../fonts/Montserrat/Montserrat-Bold.ttf");
src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Montserrat-Extra";
src: url("../../fonts/Montserrat/Montserrat-ExtraLight.ttf");
src: url("../fonts/Montserrat/Montserrat-ExtraLight.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Montserrat-Regular";
src: url("../../fonts/Montserrat/Montserrat-Regular.ttf");
src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Montserrat-Light";
src: url("../../fonts/Montserrat/Montserrat-Light.ttf");
src: url("../fonts/Montserrat/Montserrat-Light.ttf");
font-weight: normal;
font-style: normal;
}
Expand All @@ -34,31 +34,31 @@

@font-face {
font-family: "SourceSansPro-Black";
src: url("../../fonts/SourceSansPro/SourceSansPro-Black.ttf");
src: url("../fonts/SourceSansPro/SourceSansPro-Black.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SourceSansPro-Bold";
src: url("../../fonts/SourceSansPro/SourceSansPro-SemiBold.ttf");
src: url("../fonts/SourceSansPro/SourceSansPro-SemiBold.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SourceSansPro-Extra";
src: url("../../fonts/SourceSansPro/SourceSansPro-ExtraLight.ttf");
src: url("../fonts/SourceSansPro/SourceSansPro-ExtraLight.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SourceSansPro-Regular";
src: url("../../fonts/SourceSansPro/SourceSansPro-Regular.ttf");
src: url("../fonts/SourceSansPro/SourceSansPro-Regular.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SourceSansPro-Light";
src: url("../../fonts/SourceSansPro/SourceSansPro-Light.ttf");
src: url("../fonts/SourceSansPro/SourceSansPro-Light.ttf");
font-weight: normal;
font-style: normal;
}
37 changes: 37 additions & 0 deletions assets/css/sass/abstracts/_mixin.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@mixin absoluteItemCenter {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@mixin absoluteFull {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
@mixin absolute($top: null, $right: null, $bottom: null, $left: null) {
position: absolute;
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}
@mixin bgCoverCenter {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
@mixin flex($direction: row, $content: null, $items: null, $wrap: null) {
display: flex;
flex-direction: $direction;
justify-content: $content;
align-items: $items;
flex-wrap: $wrap;
}
@mixin maxWidth($breakpoint) {
@media (max-width: $breakpoint) {
@content;
}
}
9 changes: 9 additions & 0 deletions assets/css/sass/abstracts/_variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//
$charcoal-color: #3c3950;
$black-color: #000;
$white-color: #ffffff;
$gray-color: #5f727f;
$primary-color: #00bcd4;
$light-color: #f4f6f7;
$border-color: #dfe5e8;
$red-color: #ff5252;
4 changes: 4 additions & 0 deletions assets/css/sass/base/_config.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* site */
$image-path: "../assets/template-images/";
$font-path: "../assets/fonts/";
$assets-path: "../assets/";
Loading