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