1
Fork 0

fix gradient color

This commit is contained in:
Motiejus Jakštys 2024-01-20 13:02:47 +02:00
parent 5c957684e4
commit d40c2463fd
1 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ $darkTextColorStr: "ccc";
$darkBgGrey: #313131;
$blueLinkVisited: #007bff;
$grey: #666;
$lightBlue: #008ed4;
/************************/
/** Very Common Things **/
@ -23,7 +24,7 @@ html, button, input, select, textarea, .pure-g [class *= "pure-u"] {
}
.pure-button-primary {
background-color: #008ed4;
background-color: $lightBlue;
}
a, a:visited {
@ -112,7 +113,7 @@ main {
max-width: 1000px;
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%);
}
/*******************************/