Skip to content

Commit

Permalink
upt
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaoming2022 committed May 2, 2024
1 parent 5e8df84 commit 94d5d63
Show file tree
Hide file tree
Showing 51 changed files with 11,930 additions and 524 deletions.
5 changes: 5 additions & 0 deletions assets/css/fontawesome-all.min.css

Large diffs are not rendered by default.

Binary file added assets/css/images/overlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,055 changes: 1,055 additions & 0 deletions assets/css/main.css

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions assets/css/noscript.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
Identity by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Basic */

body:after {
display: none;
}

/* Main */

#main {
-moz-transform: none !important;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
opacity: 1 !important;
}
83 changes: 83 additions & 0 deletions assets/sass/base/_page.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
///
/// Identity by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///

/* Basic */

// Ensures page width is always >=320px.
@include breakpoint('<=xsmall') {
html, body {
min-width: 320px;
}
}

// Set box model to border-box.
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
html {
box-sizing: border-box;
}

*, *:before, *:after {
box-sizing: inherit;
}

body {

// Stops initial animations until page loads.
&.is-preload {
*, *:before, *:after {
@include vendor('animation', 'none !important');
@include vendor('transition', 'none !important');
}
}

}

html {
height: 100%;
}

body {
height: 100%;
background-color: _palette(bg);
@include vendor('background-image', (
'url("images/overlay.png")',
'linear-gradient(60deg, #{transparentize(_palette(accent1), 0.5)} 5%, #{transparentize(_palette(accent2), 0.65)})',
'url("../../images/bg.jpg")'
));
background-repeat: repeat, no-repeat, no-repeat;
background-size: 100px 100px, cover, cover;
background-position: top left, center center, bottom center;
background-attachment: fixed, fixed, fixed;

&:after {
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: inherit;
opacity: 0;
z-index: 1;

background-color: _palette(bg);
@include vendor('background-image', (
'url("images/overlay.png")',
'linear-gradient(60deg, #{transparentize(_palette(accent1), 0.5)} 5%, #{transparentize(_palette(accent2), 0.65)})'
));
background-repeat: repeat, no-repeat;
background-size: 100px 100px, cover;
background-position: top left, center center;

@include vendor('transition', 'opacity #{_duration(bg)} ease-out');
}

&.is-preload {
&:after {
opacity: 1;
}
}
}
76 changes: 76 additions & 0 deletions assets/sass/base/_reset.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
///
/// Identity by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///

// Reset.
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}

body {
line-height: 1;
}

ol, ul {
list-style:none;
}

blockquote, q {
quotes: none;

&:before,
&:after {
content: '';
content: none;
}
}

table {
border-collapse: collapse;
border-spacing: 0;
}

body {
-webkit-text-size-adjust: none;
}

mark {
background-color: transparent;
color: inherit;
}

input::-moz-focus-inner {
border: 0;
padding: 0;
}

input, select, textarea {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
}
119 changes: 119 additions & 0 deletions assets/sass/base/_typography.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
///
/// Identity by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///

/* Type */

body, input, select, textarea {
color: _palette(fg);
font-family: _font(family);
font-size: 14pt;
font-weight: _font(weight);
line-height: 2;
letter-spacing: _size(letter-spacing);
text-transform: uppercase;

@include breakpoint('<=xlarge') {
font-size: 11pt;
}

@include breakpoint('<=xsmall') {
font-size: 10pt;
line-height: 1.75;
}
}

a {
@include vendor('transition', (
'color #{_duration(transition)} ease',
'border-color #{_duration(transition)} ease'
));
color: inherit;
text-decoration: none;

&:before {
@include vendor('transition', (
'color #{_duration(transition)} ease',
'text-shadow #{_duration(transition)} ease'
));
}

&:hover {
color: _palette(highlight);
}
}

strong, b {
color: _palette(fg-bold);
}

em, i {
font-style: italic;
}

p {
margin: 0 0 _size(element-margin) 0;
}

h1, h2, h3, h4, h5, h6 {
color: _palette(fg-bold);
line-height: 1.5;
margin: 0 0 (_size(element-margin) * 0.5) 0;

a {
color: inherit;
text-decoration: none;
}
}

h1 {
font-size: 1.85em;
letter-spacing: (_size(letter-spacing) * 1.1);
margin: 0 0 (_size(element-margin) * 0.35) 0;
}

h2 {
font-size: 1.25em;
}

h3 {
font-size: 1em;
}

h4 {
font-size: 1em;
}

h5 {
font-size: 1em;
}

h6 {
font-size: 1em;
}

@include breakpoint('<=xsmall') {
h1 {
font-size: 1.65em;
}
}

sub {
font-size: 0.8em;
position: relative;
top: 0.5em;
}

sup {
font-size: 0.8em;
position: relative;
top: -0.5em;
}

hr {
border: 0;
border-bottom: solid _size(border-width) _palette(border);
margin: (_size(element-margin) * 2) 0;
}
Loading

0 comments on commit 94d5d63

Please sign in to comment.