Style update

This commit is contained in:
Skywt2003 2021-08-29 21:04:05 +08:00
parent 75019b1778
commit da73d14e04
3 changed files with 12 additions and 11 deletions

View File

@ -23953,17 +23953,18 @@ pre[class*="language-"] {
-moz-hyphens: none; -moz-hyphens: none;
-ms-hyphens: none; -ms-hyphens: none;
hyphens: none; hyphens: none;
background: #f5f7ff; /* background: #f5f7ff;
color: #5e6687; color: #5e6687; */
border-radius: .25rem; border-radius: .25rem;
} }
/* 虽然直接改这个 Argon 框架里面的东西不太好,但是实在找不到这个优先级问题的处理办法了 QwQ */
pre[class*="language-"]::-moz-selection, pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection { code[class*="language-"] ::-moz-selection {
text-shadow: none; text-shadow: none;
background: #dfe2f1; /* background: #dfe2f1; */
} }
pre[class*="language-"]::selection, pre[class*="language-"]::selection,
@ -23971,7 +23972,7 @@ pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"]::selection,
code[class*="language-"] ::selection { code[class*="language-"] ::selection {
text-shadow: none; text-shadow: none;
background: #dfe2f1; /* background: #dfe2f1; */
} }
/* Code blocks */ /* Code blocks */

View File

@ -26,7 +26,7 @@
line-height: 1.7; line-height: 1.7;
} }
/* post content style */ /* post content style */
article, article a { article, article .post-title a {
color: #172b4d; color: #172b4d;
} }
article{ article{
@ -49,12 +49,13 @@ blockquote:before {
line-height: 0; line-height: 0;
} }
code, pre { code, pre {
font-family: consolas, Courier, monospace, sans-serif; font-family: Consolas,Menlo,Monaco,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Courier New,Courier,monospace;
font-size: .9em;
background: #f0f0f0; background: #f0f0f0;
color: #444; color: #444;
} }
code {
padding:.1em .5em;
}
.flex-container { .flex-container {
display: flex; display: flex;
height: 100vh; height: 100vh;
@ -66,7 +67,6 @@ code, pre {
.flex-footer { .flex-footer {
display: block; display: block;
} }
.friend { .friend {

View File

@ -20,7 +20,7 @@
<link href="https://cdn.staticfile.org/font-awesome/5.15.3/css/all.css" rel="stylesheet"> <link href="https://cdn.staticfile.org/font-awesome/5.15.3/css/all.css" rel="stylesheet">
<!-- Argon Theme CSS --> <!-- Argon Theme CSS -->
<link type="text/css" href="<?php $this->options->themeUrl('/assets/css/argon-design-system.min.css')?>" rel="stylesheet"> <link type="text/css" href="<?php $this->options->themeUrl('/assets/css/argon-design-system.css')?>" rel="stylesheet">
<!-- Sky CSS--> <!-- Sky CSS-->
<link type="text/css" href="<?php $this->options->themeUrl('/assets/style.css')?>" rel="stylesheet"> <link type="text/css" href="<?php $this->options->themeUrl('/assets/style.css')?>" rel="stylesheet">
@ -38,7 +38,7 @@
<script src="<?php $this->options->themeUrl('/assets/js/argon-design-system.min.js');?>"></script> <script src="<?php $this->options->themeUrl('/assets/js/argon-design-system.min.js');?>"></script>
<!-- Highlight.js via jsDelivr --> <!-- Highlight.js via jsDelivr -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.1.0/build/styles/default.min.css"> <link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.1.0/build/styles/atom-one-dark.min.css">
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.1.0/build/highlight.min.js"></script> <script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.1.0/build/highlight.min.js"></script>
<script>hljs.highlightAll();</script> <script>hljs.highlightAll();</script>