mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-18 19:00:17 -04:00
fixed background and added gradient
This commit is contained in:
parent
0c274fa0a1
commit
07f50b2788
|
@ -12,7 +12,6 @@
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.hero {
|
.hero {
|
||||||
background: url("{{ location.hero_mobile.url }}");
|
background: url("{{ location.hero_mobile.url }}");
|
||||||
background-attachment: fixed;
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
-webkit-background-size: cover;
|
-webkit-background-size: cover;
|
||||||
|
|
|
@ -118,7 +118,9 @@ body::-webkit-scrollbar {
|
||||||
|
|
||||||
.poll {
|
.poll {
|
||||||
color: white;
|
color: white;
|
||||||
background-color: #4b4b4b;
|
background: #4b4b4b;
|
||||||
|
background: -webkit-linear-gradient(#464646, #4b4b4b);
|
||||||
|
background: linear-gradient(#464646, #4b4b4b);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
|
@ -202,7 +202,9 @@ body::-webkit-scrollbar {
|
||||||
.poll {
|
.poll {
|
||||||
color: white;
|
color: white;
|
||||||
//background-image: url("res/poll-gradient.png");
|
//background-image: url("res/poll-gradient.png");
|
||||||
background-color: $darker-grey;
|
background: $darker-grey;
|
||||||
|
background: -webkit-linear-gradient(#464646, $darker-grey);
|
||||||
|
background: linear-gradient(#464646, $darker-grey);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user