Fix linear-gradient

Fixing the "linear_gradient" functions to be "linear-gradient" so they function properly. https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient
This commit is contained in:
Gizmokid2005
2019-02-27 15:06:30 -08:00
committed by GitHub
parent c7d54329ff
commit a43e10b3d1

View File

@@ -10,7 +10,7 @@ body {
font-weight: normal;
background: #252525;
background-attachment: fixed !important;
background: linear_gradient(#2a2a29, #1c1c1c);
background: linear-gradient(#2a2a29, #1c1c1c);
}
h1, h2, h3, h4, h5, h6 {
@@ -185,7 +185,7 @@ dt {
a {
color: white;
border: 1px solid #5d910b;
background: linear_gradient(#93bd20, #659e10);
background: linear-gradient(#93bd20, #659e10);
border-radius: 2px;
box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0px 3px 7px rgba(0,0,0,.7);
@@ -198,7 +198,7 @@ dt {
text-align:center;
&:hover {
background: linear_gradient(#749619, #527f0e);
background: linear-gradient(#749619, #527f0e);
background-color: #659e10;
border: 1px solid #527f0e;
box-shadow: inset 0px 1px 1px rgba(0,0,0,.2), 0px 1px 0px rgba(0,0,0,.0);