fix(styles files): improve styles folders

This commit is contained in:
newick 2019-08-11 14:17:07 +02:00
parent 504d8faddf
commit 74b991362a
14 changed files with 110 additions and 84 deletions

View File

@ -1,70 +0,0 @@
// form inputs
.funky-box {
background: $light;
padding: 1em;
border-radius: 0.25em;
border: 1px solid $main_color;
border-bottom: 3px solid $main_color_strong;
&:focus {
color: $main_color_strong;
}
}
input, textarea,
select {
@extend .funky-box;
}
textarea {
margin-top: 1em;
border-left: 3px solid $main_color_strong;
}
// buttons
.btn {
display: inline-block;
padding: 1em;
border-radius: 0.25em;
background: $main_color_strong;
color: $light;
border: 0;
margin: 1em;
min-height: 1.5rem;
}
.btn-block {
display: block;
font-weight: 600;
font-size: 1.25em;
text-align: center;
}
a {
text-decoration: none;
nav & {
@extend .btn-outline, .btn;
display: inline-block;
margin: 0.5em;
padding: 0.5em;
color: #000;
font-size: 1rem;
}
}
.home_link {
text-decoration: none;
}
.btn-outline {
background: $light;
border: solid 1px $main_color_strong;
}
.striked {
@extend .btn-outline;
color: $main_color_strong;
}

View File

@ -0,0 +1,5 @@
@charset "UTF-8";
body {
background-color: #fff;
}

View File

@ -0,0 +1,30 @@
@charset "UTF-8";
// buttons
.btn {
display: inline-block;
padding: 1em;
border-radius: 0.25em;
background: $primary_color;
// color: $light;
border: 0;
margin: 1em;
min-height: 1.5rem;
}
.btn-block {
display: block;
font-weight: 600;
font-size: 1.25em;
text-align: center;
}
.btn-outline {
// background: $light;
border: solid 1px $primary_color;
}
.striked {
@extend .btn-outline;
color: $primary_color;
}

View File

@ -1,7 +1,15 @@
@charset "UTF-8";
body {
font-family: "DejaVu Sans Light", "Arial", "DejaVu Sans Mono";
font-size: 1.4rem;
}
h1, h2, h3, h4, h5, h6 {
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Brie Light", "Arial", "DejaVu Sans Mono";
}

View File

@ -0,0 +1,24 @@
@charset "UTF-8";
// form inputs
.funky-box {
// background: $light;
padding: 1em;
border-radius: 0.25em;
border-bottom: 3px solid $primary_color;
&:focus {
color: $primary_color;
}
}
input,
textarea,
select {
@extend .funky-box;
}
textarea {
margin-top: 1em;
border-left: 3px solid $primary_color;
}

View File

@ -0,0 +1 @@
@charset "UTF-8";

View File

@ -0,0 +1 @@
@charset "UTF-8";

View File

@ -0,0 +1,18 @@
@charset "UTF-8";
a {
text-decoration: none;
nav & {
@extend .btn-outline, .btn;
display: inline-block;
margin: 0.5em;
padding: 0.5em;
color: #000;
font-size: 1rem;
}
}
.home_link {
text-decoration: none;
}

View File

@ -0,0 +1 @@
@charset "UTF-8";

View File

@ -1,5 +1,5 @@
.logo_first {
color: $logo_color;
color: $font_color;
}
.logo_second {

View File

@ -0,0 +1,7 @@
@charset "UTF-8";
$primary_color: #FFD52C;
$font_color: #000;
$logo_color_2: #8A9B51;

View File

@ -1,7 +0,0 @@
$main_color: #fdffbf;
$main_color_strong: #FFD52C;
$second_color: cyan;
$light: white;
$logo_color: #000;
$logo_color_2: #8A9B51;

View File

@ -1,6 +1,14 @@
/* You can add global styles to this file, and also import other style files */
@import "assets/variables";
@import "assets/font";
@import "assets/global_layout";
@import "assets/logo";
@import "assets/debug";
@import "assets/scss/variables";
@import "assets/scss/global_layout";
@import "assets/scss/atoms/fonts";
@import "assets/scss/atoms/headings";
@import "assets/scss/atoms/buttons";
@import "assets/scss/atoms/links";
@import "assets/scss/atoms/forms";
@import "assets/scss/atoms/lists";
@import "assets/scss/atoms/images";
@import "assets/scss/molecules/logo";
@import "assets/scss/molecules/debug";