csr-116 css file and code organization.
Renamed files and moved code for clarity.
This commit is contained in:
parent
06f3f00370
commit
45a75e11e2
5 changed files with 73 additions and 71 deletions
|
|
@ -1,62 +0,0 @@
|
||||||
body {
|
|
||||||
font-size: 16px;
|
|
||||||
background-color: #fff;
|
|
||||||
padding: .5rem;
|
|
||||||
.container-fluid {
|
|
||||||
max-width: 576px;
|
|
||||||
&.container-shadow {
|
|
||||||
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);//Use instead of Bootstrap's helper
|
|
||||||
}
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color: $blue-600;
|
|
||||||
text-decoration: none;
|
|
||||||
border-bottom: 1px solid $blue-600;
|
|
||||||
&:hover {
|
|
||||||
color: $blue-400;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.pointer {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Typogrophy
|
|
||||||
|
|
||||||
p {
|
|
||||||
line-height: 1.625;
|
|
||||||
font-weight: 400;
|
|
||||||
small,.small {
|
|
||||||
font-size: .875rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Headings
|
|
||||||
//font-size defined in _CustomVariables.scss
|
|
||||||
//add helper fw-bold to any element to get bold style (500)
|
|
||||||
//add helper fw-light to any element to get light style (300)
|
|
||||||
h1,.h1 {
|
|
||||||
line-height: 1.325;
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
h2,.h2 {
|
|
||||||
line-height: 1.325;
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
h3,.h3 {
|
|
||||||
line-height: 1.375;
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
h4,.h4 {
|
|
||||||
line-height: 1.6;
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
h5,.h5 {
|
|
||||||
line-height: 1.325;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
h6,.h6 {
|
|
||||||
line-height: 1.7;
|
|
||||||
letter-spacing: .75px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Color system
|
//Colors
|
||||||
|
|
||||||
// White/black
|
// White/black
|
||||||
$white: #FFFFFF;
|
$white: #FFFFFF;
|
||||||
|
|
@ -67,8 +67,6 @@ $orange: #fd7e14;
|
||||||
$teal: #20c997;
|
$teal: #20c997;
|
||||||
$cyan: #0dcaf0;
|
$cyan: #0dcaf0;
|
||||||
|
|
||||||
// scss-docs-end color-variables
|
|
||||||
|
|
||||||
// scss-docs-start colors-map
|
// scss-docs-start colors-map
|
||||||
$colors: (
|
$colors: (
|
||||||
"blue": $blue,
|
"blue": $blue,
|
||||||
|
|
@ -85,7 +83,6 @@ $colors: (
|
||||||
"gray": $gray,
|
"gray": $gray,
|
||||||
"gray-dark": $gray-500
|
"gray-dark": $gray-500
|
||||||
);
|
);
|
||||||
// scss-docs-end colors-map
|
|
||||||
|
|
||||||
// scss-docs-start theme-color-variables
|
// scss-docs-start theme-color-variables
|
||||||
$primary: $blue;
|
$primary: $blue;
|
||||||
|
|
@ -96,7 +93,6 @@ $warning: $yellow;
|
||||||
$danger: $red;
|
$danger: $red;
|
||||||
$light: $gray-100;
|
$light: $gray-100;
|
||||||
$dark: $gray-500;
|
$dark: $gray-500;
|
||||||
// scss-docs-end theme-color-variables
|
|
||||||
|
|
||||||
// scss-docs-start theme-colors-map
|
// scss-docs-start theme-colors-map
|
||||||
$theme-colors: (
|
$theme-colors: (
|
||||||
|
|
@ -109,7 +105,6 @@ $theme-colors: (
|
||||||
"light": $light,
|
"light": $light,
|
||||||
"dark": $dark
|
"dark": $dark
|
||||||
);
|
);
|
||||||
// scss-docs-end theme-colors-map
|
|
||||||
|
|
||||||
//Fonts
|
//Fonts
|
||||||
$font-family-sans-serif: Roboto, Arial, Helvetica, sans-serif;
|
$font-family-sans-serif: Roboto, Arial, Helvetica, sans-serif;
|
||||||
22
src/assets/scss/_global-styles.scss
Normal file
22
src/assets/scss/_global-styles.scss
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
body {
|
||||||
|
font-size: 16px;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: .5rem;
|
||||||
|
.container-fluid {
|
||||||
|
max-width: 576px;//Remove once desktop app is complete
|
||||||
|
&.container-shadow {
|
||||||
|
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);//Use instead of Bootstrap's helper
|
||||||
|
}
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: $blue-600;
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 1px solid $blue-600;
|
||||||
|
&:hover {
|
||||||
|
color: $blue-400;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
46
src/assets/scss/components/_typogrophy.scss
Normal file
46
src/assets/scss/components/_typogrophy.scss
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
//Typogrophy
|
||||||
|
p {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.625;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Headings
|
||||||
|
//font-size defined in _custom-variables.scss
|
||||||
|
//add helper fw-bold to any element to get bold style (500)
|
||||||
|
h1,.h1 {
|
||||||
|
line-height: 1.325;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
h2,.h2 {
|
||||||
|
line-height: 1.325;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
h3,.h3 {
|
||||||
|
line-height: 1.375;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
h4,.h4 {
|
||||||
|
line-height: 1.6;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
h5,.h5 {
|
||||||
|
line-height: 1.325;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
h6,.h6 {
|
||||||
|
line-height: 1.7;
|
||||||
|
letter-spacing: .75px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
line-height: 1.625;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
caption {
|
||||||
|
font-size: .75rem;
|
||||||
|
line-height: 1.7;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
@import "./node_modules/bootstrap/scss/functions";
|
@import "./node_modules/bootstrap/scss/functions";
|
||||||
|
|
||||||
//Variable Overrides
|
//Variable Overrides
|
||||||
@import "_CustomVariables";
|
@import "_custom-variables";
|
||||||
|
|
||||||
//Bootstrap Default Variables and Mixins
|
//Bootstrap Default Variables and Mixins
|
||||||
@import "./node_modules/bootstrap/scss/variables";
|
@import "./node_modules/bootstrap/scss/variables";
|
||||||
|
|
@ -14,11 +14,12 @@
|
||||||
@import "./node_modules/bootstrap/scss/bootstrap";
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
||||||
|
|
||||||
//Custom Global CSS
|
//Custom Global CSS
|
||||||
@import "_GlobalStyles";
|
@import "_global-styles";
|
||||||
|
|
||||||
//Custom Components CSS
|
//Custom Components CSS
|
||||||
|
@import "./components/_typogrophy";
|
||||||
@import "./components/_navbar";
|
@import "./components/_navbar";
|
||||||
@import "./components/_SelectCar";
|
@import "./components/_SelectCar";
|
||||||
@import "./components/_buttons";
|
@import "./components/_buttons";
|
||||||
@import "./components/_vehicle-image";
|
@import "./components/_vehicle-image";
|
||||||
@import "./components/_radio-card";
|
@import "./components/_radio-card";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue