fix gradient color
This commit is contained in:
parent
5c957684e4
commit
d40c2463fd
|
@ -7,6 +7,7 @@ $darkTextColorStr: "ccc";
|
||||||
$darkBgGrey: #313131;
|
$darkBgGrey: #313131;
|
||||||
$blueLinkVisited: #007bff;
|
$blueLinkVisited: #007bff;
|
||||||
$grey: #666;
|
$grey: #666;
|
||||||
|
$lightBlue: #008ed4;
|
||||||
|
|
||||||
/************************/
|
/************************/
|
||||||
/** Very Common Things **/
|
/** Very Common Things **/
|
||||||
|
@ -23,7 +24,7 @@ html, button, input, select, textarea, .pure-g [class *= "pure-u"] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.pure-button-primary {
|
.pure-button-primary {
|
||||||
background-color: #008ed4;
|
background-color: $lightBlue;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:visited {
|
a, a:visited {
|
||||||
|
@ -112,7 +113,7 @@ main {
|
||||||
max-width: 1000px;
|
max-width: 1000px;
|
||||||
|
|
||||||
background-color: #e6e6e6;
|
background-color: #e6e6e6;
|
||||||
background: radial-gradient(circle at top left, $blueLinkVisited 0%, $grey 50%, $darkTextColor 100%);
|
background: radial-gradient(circle at top left, $lightBlue 0%, $grey 50%, $darkTextColor 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*******************************/
|
/*******************************/
|
||||||
|
|
Loading…
Reference in New Issue