Skip to content

Commit b264710

Browse files
theskumarCuriousLearner
authored andcommitted
fix(home/jumbotron): fix color values (#12)
hex values are max of 6chars here they are 8, causing colors to fail to render.
1 parent 73f454a commit b264710

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

assets/css/main.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ h1 {
2020
}
2121

2222
.jumbotron {
23-
background: #ff407ce6; /* For browsers that do not support gradients */
24-
background: -webkit-radial-gradient(#915f6d66, #915f6d); /* Safari 5.1 to 6.0 */
25-
background: -o-radial-gradient(#915f6d66, #915f6d); /* For Opera 11.6 to 12.0 */
26-
background: -moz-radial-gradient(#915f6d66, #915f6d); /* For Firefox 3.6 to 15 */
27-
background: radial-gradient(#915f6d66, #915f6d); /* Standard syntax */
23+
background: #ff407c; /* For browsers that do not support gradients */
24+
background: -webkit-radial-gradient(#915f6d, #915f6d); /* Safari 5.1 to 6.0 */
25+
background: -o-radial-gradient(#915f6d, #915f6d); /* For Opera 11.6 to 12.0 */
26+
background: -moz-radial-gradient(#915f6d, #915f6d); /* For Firefox 3.6 to 15 */
27+
background: radial-gradient(#915f6d, #915f6d); /* Standard syntax */
2828
color: #fff;
2929
margin-bottom: -1px;
3030
}

0 commit comments

Comments
 (0)