Compare commits
No commits in common. "4fa09193d826ba3287a3b78abc405783f9b04675" and "8ae8a63267b024ebfd62e44602bb4041c6909c1e" have entirely different histories.
4fa09193d8
...
8ae8a63267
|
@ -29,8 +29,6 @@ a {
|
|||
font-family: $text-font-family;
|
||||
font-weight: $text-font-weight;
|
||||
color: $link-color;
|
||||
letter-spacing: 0.3px;
|
||||
margin: 0 1px;
|
||||
text-decoration: none;
|
||||
&:focus,
|
||||
&:hover {
|
||||
|
|
|
@ -82,37 +82,28 @@
|
|||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
p a:link {
|
||||
font-weight: bold;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
}
|
||||
|
||||
div.content .meta-tag {
|
||||
.meta-tag {
|
||||
padding: 0 12px;
|
||||
margin: 3px;
|
||||
border: 1px solid darken($bg-color, 7%);
|
||||
border: 1px solid #eaeaea;
|
||||
border-radius: 1px;
|
||||
background-color: darken($bg-color, 5%);
|
||||
background-color: #ededed;
|
||||
|
||||
color: $fg-color;
|
||||
color: #333;
|
||||
|
||||
i {
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
&--link {
|
||||
color: $link-color;
|
||||
font-size: 0.8em;
|
||||
text-decoration: underline;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
color: lighten($link-color, 20%);
|
||||
|
||||
.icon {
|
||||
color: $link-color;
|
||||
}
|
||||
color: #999;
|
||||
}
|
||||
|
||||
i {
|
||||
|
@ -202,6 +193,7 @@ div.content .meta-tag {
|
|||
i {
|
||||
font-size: 1em;
|
||||
text-align: center;
|
||||
width: 1.6rem;
|
||||
margin-left: 0;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
@mixin content_dark {
|
||||
|
||||
.content {
|
||||
|
||||
.list {
|
||||
ul {
|
||||
li {
|
||||
|
@ -29,34 +31,16 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.meta-tag {
|
||||
color: darken($fg-color-dark, 35%);
|
||||
background-color: lighten($bg-color-dark, 5%);
|
||||
border: 0;
|
||||
|
||||
&--link {
|
||||
color: $link-color-dark;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
color: lighten($link-color-dark, 15%);
|
||||
|
||||
.icon {
|
||||
color: $link-color-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
body.colorscheme-dark {
|
||||
@include content_dark();
|
||||
@include content_dark()
|
||||
}
|
||||
|
||||
body.colorscheme-auto {
|
||||
@media (prefers-color-scheme: dark) {
|
||||
@include content_dark();
|
||||
@include content_dark()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,11 +14,11 @@ $bg-color: #fafafa !default;
|
|||
$fg-color: #212121 !default;
|
||||
$alt-bg-color: #e0e0e0 !default;
|
||||
$alt-fg-color: #000 !default;
|
||||
$link-color: #0862da !default;
|
||||
$link-color: #464f56 !default;
|
||||
|
||||
// Colors dark
|
||||
$bg-color-dark: #212121 !default;
|
||||
$fg-color-dark: #dadada !default;
|
||||
$alt-bg-color-dark: #424242 !default;
|
||||
$alt-fg-color-dark: #dadada !default;
|
||||
$link-color-dark: #2381ff !default;
|
||||
$link-color-dark: #464f56 !default;
|
||||
|
|
Loading…
Reference in New Issue