_
This commit is contained in:
55
styles/_classes.sass
Normal file
55
styles/_classes.sass
Normal file
@@ -0,0 +1,55 @@
|
||||
@import ./_variables
|
||||
@import ./_mixins
|
||||
|
||||
.title
|
||||
text-align: center
|
||||
margin-top: 2%
|
||||
margin-bottom: 2%
|
||||
font-size: 60px
|
||||
width: 100%
|
||||
color: $text_color_0
|
||||
|
||||
.a
|
||||
margin: 0% 5% 5% 5%
|
||||
padding: 2%
|
||||
border-radius: 10px
|
||||
background-color: $primary_light
|
||||
box-shadow:: 5px 5px 12px #141414
|
||||
|
||||
.normal_text
|
||||
@include normal_text
|
||||
background-color: $primary_light
|
||||
|
||||
.highlight_text
|
||||
@include highlight_text
|
||||
background-color: $primary_light
|
||||
|
||||
.mtop
|
||||
margin-top: $mtop
|
||||
|
||||
.mleft
|
||||
margin-left: $mleft
|
||||
|
||||
.normal_image
|
||||
margin-top: $mtop + $image_margins_size
|
||||
margin-bottom: $image_margins_size
|
||||
box-shadow: 10px 10px 24px #111
|
||||
|
||||
.normal_video
|
||||
margin-top: $mtop + $video_margins_size
|
||||
margin-bottom: $video_margins_size
|
||||
box-shadow: 10px 10px 24px #111
|
||||
|
||||
.row
|
||||
margin-top: $mtop
|
||||
display: flex
|
||||
justify-content: space-around
|
||||
flex-direction: row
|
||||
border-radius: 10px
|
||||
|
||||
.spline_scene
|
||||
margin-top: $mtop + $spline_scene_margins_size
|
||||
margin-bottom: $spline_scene_margins_size
|
||||
box-shadow: 10px 10px 24px #111
|
||||
width: 1000px
|
||||
height: 600px
|
12
styles/_main_tags.sass
Normal file
12
styles/_main_tags.sass
Normal file
@@ -0,0 +1,12 @@
|
||||
@import ./_variables
|
||||
|
||||
nav
|
||||
width: 100%
|
||||
height: 30px
|
||||
box-shadow: 0px 0px 20px #000
|
||||
background-color: $primary_dark
|
||||
|
||||
canvas
|
||||
margin-top: $mtop + $canvas_margins_size
|
||||
margin-bottom: $canvas_margins_size
|
||||
box-shadow: 10px 10px 24px #111
|
21
styles/_mixins.sass
Normal file
21
styles/_mixins.sass
Normal file
@@ -0,0 +1,21 @@
|
||||
@import ./_variables
|
||||
|
||||
|
||||
@mixin smaller_text
|
||||
font-size: $smaller_text_font_size
|
||||
color: text_color_0
|
||||
font-family: Arial, Helvetica, sans-ser
|
||||
letter-spacing: 0.6px
|
||||
|
||||
|
||||
@mixin normal_text
|
||||
font-size: $normal_text_font_size
|
||||
color: $text_color_0
|
||||
font-family: Arial, Helvetica, sans-ser
|
||||
letter-spacing: 2px
|
||||
|
||||
@mixin highlight_text
|
||||
font-size: $highlight_text_font_size
|
||||
color: $text_color_1
|
||||
font-family: Arial, Helvetica, sans-serif
|
||||
letter-spacing: 1px
|
19
styles/_variables.sass
Normal file
19
styles/_variables.sass
Normal file
@@ -0,0 +1,19 @@
|
||||
$primary: #282828
|
||||
$primary_dark: #895d5d
|
||||
$primary_light: #313131
|
||||
|
||||
$scrollbar_track_color: #373737
|
||||
$scrollbar_thumb_color: #4b4b4b
|
||||
|
||||
$text_color_0: #d2d2d2
|
||||
$text_color_1: #e3e3e3
|
||||
$small_text_font_size: 22px
|
||||
$normal_text_font_size: 26px
|
||||
$highlight_text_font_size: 34px
|
||||
$mtop: 1.2%
|
||||
$mleft: 1.2%
|
||||
|
||||
$image_margins_size: 1.2%
|
||||
$video_margins_size: 1.2%
|
||||
$canvas_margins_size: 1.2%
|
||||
$spline_scene_margins_size: 1.2%
|
117
styles/style.css
Normal file
117
styles/style.css
Normal file
@@ -0,0 +1,117 @@
|
||||
nav {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
-webkit-box-shadow: 0px 0px 20px #000;
|
||||
box-shadow: 0px 0px 20px #000;
|
||||
background-color: #895d5d;
|
||||
}
|
||||
|
||||
canvas {
|
||||
margin-top: 2.4%;
|
||||
margin-bottom: 1.2%;
|
||||
-webkit-box-shadow: 10px 10px 24px #111;
|
||||
box-shadow: 10px 10px 24px #111;
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
margin-top: 2%;
|
||||
margin-bottom: 2%;
|
||||
font-size: 60px;
|
||||
width: 100%;
|
||||
color: #d2d2d2;
|
||||
}
|
||||
|
||||
.a {
|
||||
margin: 0% 5% 5% 5%;
|
||||
padding: 2%;
|
||||
border-radius: 10px;
|
||||
background-color: #313131;
|
||||
-webkit-box-shadow: 5px 5px 12px #141414;
|
||||
box-shadow: 5px 5px 12px #141414;
|
||||
}
|
||||
|
||||
.normal_text {
|
||||
font-size: 26px;
|
||||
color: #d2d2d2;
|
||||
font-family: Arial, Helvetica, sans-ser;
|
||||
letter-spacing: 2px;
|
||||
background-color: #313131;
|
||||
}
|
||||
|
||||
.highlight_text {
|
||||
font-size: 34px;
|
||||
color: #e3e3e3;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
letter-spacing: 1px;
|
||||
background-color: #313131;
|
||||
}
|
||||
|
||||
.mtop {
|
||||
margin-top: 1.2%;
|
||||
}
|
||||
|
||||
.mleft {
|
||||
margin-left: 1.2%;
|
||||
}
|
||||
|
||||
.normal_image {
|
||||
margin-top: 2.4%;
|
||||
margin-bottom: 1.2%;
|
||||
-webkit-box-shadow: 10px 10px 24px #111;
|
||||
box-shadow: 10px 10px 24px #111;
|
||||
}
|
||||
|
||||
.normal_video {
|
||||
margin-top: 2.4%;
|
||||
margin-bottom: 1.2%;
|
||||
-webkit-box-shadow: 10px 10px 24px #111;
|
||||
box-shadow: 10px 10px 24px #111;
|
||||
}
|
||||
|
||||
.row {
|
||||
margin-top: 1.2%;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.spline_scene {
|
||||
margin-top: 2.4%;
|
||||
margin-bottom: 1.2%;
|
||||
-webkit-box-shadow: 10px 10px 24px #111;
|
||||
box-shadow: 10px 10px 24px #111;
|
||||
width: 1000px;
|
||||
height: 600px;
|
||||
}
|
||||
|
||||
* {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
background-color: #282828;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #373737;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #4b4b4b;
|
||||
}
|
||||
/*# sourceMappingURL=style.css.map */
|
18
styles/style.css.map
Normal file
18
styles/style.css.map
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 3,
|
||||
"mappings": "ACEA,AAAA,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,iBAAiB;EAC7B,gBAAgB,ECLL,OAAO;CDKgB;;AAEtC,AAAA,MAAM,CAAC;EACH,UAAU,EAAE,IAA4B;EACxC,aAAa,ECOK,IAAI;EDNtB,UAAU,EAAE,mBAAmB;CAAG;;AERtC,AAAA,MAAM,CAAC;EACH,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,EAAE;EACd,aAAa,EAAE,EAAE;EACjB,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,KAAK,EDFM,OAAO;CCEK;;AAE3B,AAAA,EAAE,CAAC;EACC,MAAM,EAAE,WAAW;EACnB,OAAO,EAAE,EAAE;EACX,aAAa,EAAE,IAAI;EACnB,gBAAgB,EDbJ,OAAO;ECcnB,UAAU,EAAG,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO;CAAK;;AAE1C,AAAA,YAAY,CAAC;EEPT,SAAS,EHDW,IAAI;EGExB,KAAK,EHLM,OAAO;EGMlB,WAAW,EAAE,0BAA0B;EACvC,cAAc,EAAE,GAAG;EFMnB,gBAAgB,EDlBJ,OAAO;CCkBgB;;AAEvC,AAAA,eAAe,CAAC;EELZ,SAAS,EHNc,IAAI;EGO3B,KAAK,EHVM,OAAO;EGWlB,WAAW,EAAE,4BAA4B;EACzC,cAAc,EAAE,GAAG;EFInB,gBAAgB,EDtBJ,OAAO;CCsBgB;;AAEvC,AAAA,KAAK,CAAC;EACF,UAAU,EDfP,IAAI;CCea;;AAExB,AAAA,MAAM,CAAC;EACH,WAAW,EDjBP,IAAI;CCiBc;;AAE1B,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,IAA2B;EACvC,aAAa,EDnBI,IAAI;ECoBrB,UAAU,EAAE,mBAAmB;CAAG;;AAEtC,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,IAA2B;EACvC,aAAa,EDvBI,IAAI;ECwBrB,UAAU,EAAE,mBAAmB;CAAG;;AAEtC,AAAA,IAAI,CAAC;EACD,UAAU,ED/BP,IAAI;ECgCP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,YAAY;EAC7B,cAAc,EAAE,GAAG;EACnB,aAAa,EAAE,IAAI;CAAG;;AAE1B,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,IAAkC;EAC9C,aAAa,EDjCW,IAAI;ECkC5B,UAAU,EAAE,mBAAmB;EAC/B,KAAK,EAAE,MAAM;EACb,MAAM,EAAE,KAAK;CAAG;;AHjDpB,AAAA,CAAC,CAAC;EACE,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,IAAI;EACjB,gBAAgB,EETV,OAAO;EFUb,WAAW,EAAE,GAAG;CAAG;;AAEvB,AAAA,mBAAmB,CAAC;EAChB,KAAK,EAAE,IAAI;CAAG;;AAElB,AAAA,yBAAyB,CAAC;EACtB,gBAAgB,EEZI,OAAO;CFYgB;;AAE/C,AAAA,yBAAyB,CAAC;EACtB,gBAAgB,EEdI,OAAO;CFcgB",
|
||||
"sources": [
|
||||
"style.sass",
|
||||
"_main_tags.sass",
|
||||
"_variables.sass",
|
||||
"_classes.sass",
|
||||
"_variables.sass",
|
||||
"_mixins.sass",
|
||||
"_variables.sass",
|
||||
"_variables.sass",
|
||||
"_mixins.sass",
|
||||
"_variables.sass"
|
||||
],
|
||||
"names": [],
|
||||
"file": "style.css"
|
||||
}
|
20
styles/style.sass
Normal file
20
styles/style.sass
Normal file
@@ -0,0 +1,20 @@
|
||||
@import ./_main_tags
|
||||
@import ./_classes
|
||||
@import ./_variables
|
||||
@import ./_mixins
|
||||
|
||||
*
|
||||
padding: 0px
|
||||
margin: 0px
|
||||
user-select: none
|
||||
background-color: $primary
|
||||
line-height: 1.3
|
||||
|
||||
::-webkit-scrollbar
|
||||
width: 10px
|
||||
|
||||
::-webkit-scrollbar-track
|
||||
background-color: $scrollbar_track_color
|
||||
|
||||
::-webkit-scrollbar-thumb
|
||||
background-color: $scrollbar_thumb_color
|
Reference in New Issue
Block a user