mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
fix(styles files): improve styles folders
This commit is contained in:
parent
504d8faddf
commit
74b991362a
@ -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;
|
|
||||||
}
|
|
5
src/assets/scss/_global_layout.scss
Normal file
5
src/assets/scss/_global_layout.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
30
src/assets/scss/atoms/_buttons.scss
Normal file
30
src/assets/scss/atoms/_buttons.scss
Normal 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;
|
||||||
|
}
|
@ -1,7 +1,15 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: "DejaVu Sans Light", "Arial", "DejaVu Sans Mono";
|
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";
|
font-family: "Brie Light", "Arial", "DejaVu Sans Mono";
|
||||||
}
|
}
|
24
src/assets/scss/atoms/_forms.scss
Normal file
24
src/assets/scss/atoms/_forms.scss
Normal 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;
|
||||||
|
}
|
1
src/assets/scss/atoms/_headings.scss
Normal file
1
src/assets/scss/atoms/_headings.scss
Normal file
@ -0,0 +1 @@
|
|||||||
|
@charset "UTF-8";
|
1
src/assets/scss/atoms/_images.scss
Normal file
1
src/assets/scss/atoms/_images.scss
Normal file
@ -0,0 +1 @@
|
|||||||
|
@charset "UTF-8";
|
18
src/assets/scss/atoms/_links.scss
Normal file
18
src/assets/scss/atoms/_links.scss
Normal 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;
|
||||||
|
}
|
1
src/assets/scss/atoms/_lists.scss
Normal file
1
src/assets/scss/atoms/_lists.scss
Normal file
@ -0,0 +1 @@
|
|||||||
|
@charset "UTF-8";
|
@ -1,5 +1,5 @@
|
|||||||
.logo_first {
|
.logo_first {
|
||||||
color: $logo_color;
|
color: $font_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo_second {
|
.logo_second {
|
7
src/assets/scss/variables.scss
Normal file
7
src/assets/scss/variables.scss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
$primary_color: #FFD52C;
|
||||||
|
|
||||||
|
$font_color: #000;
|
||||||
|
|
||||||
|
$logo_color_2: #8A9B51;
|
@ -1,7 +0,0 @@
|
|||||||
$main_color: #fdffbf;
|
|
||||||
$main_color_strong: #FFD52C;
|
|
||||||
$second_color: cyan;
|
|
||||||
$light: white;
|
|
||||||
|
|
||||||
$logo_color: #000;
|
|
||||||
$logo_color_2: #8A9B51;
|
|
@ -1,6 +1,14 @@
|
|||||||
/* You can add global styles to this file, and also import other style files */
|
/* You can add global styles to this file, and also import other style files */
|
||||||
@import "assets/variables";
|
@import "assets/scss/variables";
|
||||||
@import "assets/font";
|
@import "assets/scss/global_layout";
|
||||||
@import "assets/global_layout";
|
|
||||||
@import "assets/logo";
|
@import "assets/scss/atoms/fonts";
|
||||||
@import "assets/debug";
|
@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";
|
||||||
|
Loading…
Reference in New Issue
Block a user