some style
This commit is contained in:
parent
b82b13e267
commit
96817ba994
@ -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">
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -9,7 +9,7 @@ table {
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: $all-text-color;
|
||||
background: $deepblue;
|
||||
}
|
||||
|
||||
.product-box {
|
||||
|
Loading…
Reference in New Issue
Block a user