some style

This commit is contained in:
Kayn Ty 2018-05-04 19:27:37 +02:00
parent b82b13e267
commit 96817ba994
5 changed files with 24 additions and 9 deletions

View File

@ -3,7 +3,7 @@
{% include 'default/header.html.twig' %}
{% block body %}
<div class="main-screen">
<div class="main-screen" id="homepage">
<div id="welcome">
<section class="bg-accessories">
<div class="bg-shader">

View File

@ -4,6 +4,11 @@ body {
color: $all-text-color;
}
.navbar-inverse {
background-color: rgba(0, 0, 0, 0.25);
border-color: #090909;
}
#wrapper {
min-height: 100vh;
}
@ -41,10 +46,10 @@ body {
}
.bg-color {
background: #1b6d85;
color: white;
background: $deepblue;
color: $light;
a {
color: lightblue;
color: $lightblue;
}
padding: 1rem;
}

View File

@ -2,7 +2,7 @@
.main-section {
padding: 1rem;
display: flex;
color: white;
color: $light;
justify-content: center;
h1 {
font-size: 4em;
@ -18,6 +18,13 @@
}
.product-values {
color: white;
color: $light;
padding: 4rem;
padding-top: 25vh;
}
#homepage {
h2, h3, h4, h5, h6 {
color: $light;
}
}

View File

@ -1,4 +1,7 @@
$dark: #222;
$light: #dedede;
$logo-color: mix(mediumslateblue, white);
$all-text-color: mix(mediumslateblue, $light);
$deepblue: #1b6d85;
$lightblue: lightblue;
$logo-color: mix($deepblue, $light);
$all-text-color: mix($deepblue, $light);

View File

@ -9,7 +9,7 @@ table {
}
.btn-primary {
background: $all-text-color;
background: $deepblue;
}
.product-box {