some style
This commit is contained in:
parent
b82b13e267
commit
96817ba994
@ -3,7 +3,7 @@
|
|||||||
{% include 'default/header.html.twig' %}
|
{% include 'default/header.html.twig' %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="main-screen">
|
<div class="main-screen" id="homepage">
|
||||||
<div id="welcome">
|
<div id="welcome">
|
||||||
<section class="bg-accessories">
|
<section class="bg-accessories">
|
||||||
<div class="bg-shader">
|
<div class="bg-shader">
|
||||||
|
@ -4,6 +4,11 @@ body {
|
|||||||
color: $all-text-color;
|
color: $all-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-inverse {
|
||||||
|
background-color: rgba(0, 0, 0, 0.25);
|
||||||
|
border-color: #090909;
|
||||||
|
}
|
||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
@ -41,10 +46,10 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bg-color {
|
.bg-color {
|
||||||
background: #1b6d85;
|
background: $deepblue;
|
||||||
color: white;
|
color: $light;
|
||||||
a {
|
a {
|
||||||
color: lightblue;
|
color: $lightblue;
|
||||||
}
|
}
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.main-section {
|
.main-section {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
color: white;
|
color: $light;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 4em;
|
font-size: 4em;
|
||||||
@ -18,6 +18,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.product-values {
|
.product-values {
|
||||||
color: white;
|
color: $light;
|
||||||
padding: 4rem;
|
padding: 4rem;
|
||||||
|
padding-top: 25vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#homepage {
|
||||||
|
h2, h3, h4, h5, h6 {
|
||||||
|
color: $light;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
$dark: #222;
|
$dark: #222;
|
||||||
$light: #dedede;
|
$light: #dedede;
|
||||||
$logo-color: mix(mediumslateblue, white);
|
$deepblue: #1b6d85;
|
||||||
$all-text-color: mix(mediumslateblue, $light);
|
$lightblue: lightblue;
|
||||||
|
|
||||||
|
$logo-color: mix($deepblue, $light);
|
||||||
|
$all-text-color: mix($deepblue, $light);
|
||||||
|
@ -9,7 +9,7 @@ table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background: $all-text-color;
|
background: $deepblue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-box {
|
.product-box {
|
||||||
|
Loading…
Reference in New Issue
Block a user