Updating theme

This commit is contained in:
2020-06-09 01:40:30 +01:00
parent 46fc3e0bfe
commit e2c1b06006
2 changed files with 27 additions and 11 deletions

View File

@@ -11,23 +11,28 @@ $gray-700: #264d61;
$gray-800: #0c344b; $gray-800: #0c344b;
$gray-900: #082333; $gray-900: #082333;
$font-grey: #343a40; $text-gray: #343a40;
$primary: #a02f2f; $primary: #a02f2f;
$secondary: #1B1725; $secondary: #773A6B;
$table-dark-color: $white;
$table-dark-bg: $primary;
$text-muted: $gray-400; $text-muted: $gray-400;
$body-color: $font-grey; $body-color: $text-gray;
$light: $white; $light: $white;
$dark: $gray-900; $dark: $gray-900;
$headings-color: $font-grey; $headings-color: $text-gray;
$headings-font-family: "Rotunda", $headings-font-family: "Rotunda",
sans-serif; sans-serif;
$headings-font-weight: 500; $headings-font-weight: 500;
// $nav-link-disabled-color: $font-grey; // $nav-link-disabled-color: $text-gray;
// $nav-tabs-link-active-color: $font-grey; // $nav-tabs-link-active-color: $text-gray;
$navbar-light-color: $font-grey; $navbar-light-color: $text-gray;
$navbar-light-hover-color: $primary; $navbar-light-hover-color: $primary;
$navbar-light-active-color: $primary; $navbar-light-active-color: $primary;

View File

@@ -9,7 +9,8 @@
.author .name a, .author .name a,
.author .social a { .author .social a {
color: $gray-900; // color: $gray-900;
color: $text-gray;
text-decoration: none; text-decoration: none;
} }
@@ -29,7 +30,7 @@ code {
code[class*=language-], pre[class*=language-] { code[class*=language-], pre[class*=language-] {
font-family: $font-family-monospace !important; font-family: $font-family-monospace !important;
font-weight: 600; font-weight: 600;
color: red; // color: red;
@include font-size($code-font-size); @include font-size($code-font-size);
} }
@@ -82,7 +83,7 @@ footer a:not(.icons) {
} }
.navbar { .navbar {
border-bottom: 1px solid rgb(210, 210, 214); border-bottom: 1px solid #a02f2f;
} }
.rotate-a-20 { .rotate-a-20 {
@@ -103,5 +104,15 @@ img.front-background {
} }
a.navbar-brand { a.navbar-brand {
color: $font-grey !important; color: $text-gray !important;
}
// Post page
div.post-info > div > p:first-child{
margin: 0px;
}
#navbar-brand-image {
transform: scale(-1.25, 1.25);
} }