style: em -> rem in css file

This commit is contained in:
XPoet 2020-12-01 16:51:38 +08:00
parent 3d47319a94
commit 59d0302d9b
25 changed files with 281 additions and 235 deletions

View File

@ -25,7 +25,7 @@
<div class="header-drawer"> <div class="header-drawer">
<ul class="drawer-menu-list"> <ul class="drawer-menu-list">
<% for (let i in theme.menu) { %> <% for (let i in theme.menu) { %>
<li class="drawer-menu-item"> <li class="drawer-menu-item flex-center">
<a class="<%- isInHomePaging(page.path, theme.menu[i]) ? 'active' : is_current(theme.menu[i]) ? 'active' : '' %>" <a class="<%- isInHomePaging(page.path, theme.menu[i]) ? 'active' : is_current(theme.menu[i]) ? 'active' : '' %>"
href="<%- url_for(theme.menu[i]) %>"><%= __(i.toLowerCase()).toUpperCase() %></a> href="<%- url_for(theme.menu[i]) %>"><%= __(i.toLowerCase()).toUpperCase() %></a>
</li> </li>

View File

@ -1,7 +1,7 @@
$archive-year-font-size = 1.8em; $archive-year-font-size = 1.8rem;
$archive-year-count-font-size = 1.2em; $archive-year-count-font-size = 1.2rem;
$article-title-font-size = 1.2em; $article-title-font-size = 1.2rem;
$article-date-font-size = 1em; $article-date-font-size = 1rem;
.archive-list-container { .archive-list-container {
@ -19,7 +19,7 @@ $article-date-font-size = 1em;
font-size: $archive-year-font-size; font-size: $archive-year-font-size;
+keep-tablet() { +keep-tablet() {
font-size: $archive-year-font-size - 0.2em; font-size: $archive-year-font-size - 0.2rem;
} }
color: var(--second-text-color); color: var(--second-text-color);
@ -27,11 +27,12 @@ $article-date-font-size = 1em;
margin-right: 6px; margin-right: 6px;
} }
.archive-year-post-count { .archive-year-post-count {
font-size: $archive-year-count-font-size; font-size: $archive-year-count-font-size;
+keep-tablet() { +keep-tablet() {
font-size: $archive-year-count-font-size - 0.1em; font-size: $archive-year-count-font-size * 0.9;
} }
color: var(--second-text-color); color: var(--second-text-color);
@ -50,6 +51,7 @@ $article-date-font-size = 1em;
} }
.article-item { .article-item {
font-size: 1rem;
margin-top: 18px; margin-top: 18px;
+keep-tablet() { +keep-tablet() {

View File

@ -4,7 +4,7 @@
box-sizing: border-box; box-sizing: border-box;
background: var(--second-background-color); background: var(--second-background-color);
padding: 10px 6px; padding: 10px 6px;
font-size: 1em; font-size: 1rem;
&::after { &::after {
position: absolute; position: absolute;
@ -16,6 +16,7 @@
background: var(--copyright-info-color); background: var(--copyright-info-color);
} }
ul { ul {
margin-left: 10px; margin-left: 10px;

View File

@ -1,7 +1,6 @@
.article-meta-info { .article-meta-info {
color: var(--third-text-color); color: var(--third-text-color);
font-size: 0.8em; font-size: 0.8rem;
.article-meta-item { .article-meta-item {
margin-right: 10px; margin-right: 10px;

View File

@ -67,7 +67,6 @@
.vcard { .vcard {
// author // author
&.author { &.author {
.vnick { .vnick {
font-weight: bold; font-weight: bold;

View File

@ -68,7 +68,7 @@ $friend-link-item-border-radius = 6px;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
font-size: 2em; font-size: 2rem;
background: var(--second-background-color); background: var(--second-background-color);
color: var(--second-text-color); color: var(--second-text-color);
@ -94,13 +94,13 @@ $friend-link-item-border-radius = 6px;
.name { .name {
width: 100%; width: 100%;
height: 60%; height: 60%;
font-size: 1.28em; font-size: 1.28rem;
} }
.description { .description {
width: 100%; width: 100%;
height: 40%; height: 40%;
font-size: 1em; font-size: 1rem;
color: var(--third-text-color); color: var(--third-text-color);
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;

View File

@ -13,15 +13,15 @@
.description { .description {
font-weight: bold; font-weight: bold;
font-size: 2em; font-size: 2rem;
line-height: 2em; line-height: 2rem;
text-align: center; text-align: center;
} }
.s-icon-list { .s-icon-list {
position: absolute; position: absolute;
bottom: $component-interspace; bottom: $component-interspace;
font-size: 1.6em; font-size: 1.6rem;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
@ -29,7 +29,7 @@
float: left; float: left;
margin-right: 25px; margin-right: 25px;
cursor: pointer; cursor: pointer;
line-height: 2em; line-height: 2rem;
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;

View File

@ -1,4 +1,5 @@
.footer { .footer {
font-size: 1rem;
color: var(--third-text-color); color: var(--third-text-color);
a { a {

View File

@ -1,4 +1,5 @@
$header-progress-height = 2.8px; $header-progress-height = 2.8px;
$logo-title-font-size = 2.2rem;
.header-wrapper { .header-wrapper {
width: 100%; width: 100%;
@ -23,31 +24,29 @@ $header-progress-height = 2.8px;
align-items: center; align-items: center;
z-index: $z-index-5; z-index: $z-index-5;
transition();
+keep-tablet() { +keep-tablet() {
width: $main-content-width-tablet !important; width: $main-content-width-tablet;
} }
+keep-mobile() { +keep-mobile() {
width: $main-content-width-mobile !important; width: $main-content-width-mobile;
} }
.logo-title { .logo-title {
font-size: 2.2em; font-size: $logo-title-font-size;
font-weight: bold; font-weight: bold;
letter-spacing: 1px;
color: var(--first-text-color);
+keep-tablet() { +keep-tablet() {
font-size: 2.0em; font-size: $logo-title-font-size * 0.9;
} }
+keep-mobile() { +keep-mobile() {
font-size: 1.8em; font-size: $logo-title-font-size * 0.8;
} }
letter-spacing: 1px;
color: var(--first-text-color);
transition();
} }
@ -57,10 +56,12 @@ $header-progress-height = 2.8px;
display: none; display: none;
} }
.menu-item { .menu-item {
float: left; float: left;
position: relative; position: relative;
margin-left: 30px; margin-left: 30px;
font-size: 1rem;
&:first-child { &:first-child {
margin-left: 0; margin-left: 0;
@ -81,7 +82,6 @@ $header-progress-height = 2.8px;
height: 2px; height: 2px;
transform: translateX(-50%); transform: translateX(-50%);
background: var(--primary-color); background: var(--primary-color);
transition();
} }
} }
@ -90,8 +90,6 @@ $header-progress-height = 2.8px;
.active { .active {
color: var(--second-text-color); color: var(--second-text-color);
font-weight: bold;
transition();
&::after { &::after {
content: ''; content: '';
@ -102,7 +100,6 @@ $header-progress-height = 2.8px;
height: 2px; height: 2px;
transform: translateX(-50%); transform: translateX(-50%);
background: var(--primary-color) background: var(--primary-color)
transition();
} }
} }
} }
@ -163,9 +160,10 @@ $header-progress-height = 2.8px;
transform: scaleY(0); transform: scaleY(0);
transform-origin: top; transform-origin: top;
background: var(--background-color); background: var(--background-color);
transition();
z-index: $z-index-2; z-index: $z-index-2;
transition();
.drawer-menu-list { .drawer-menu-list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -173,28 +171,28 @@ $header-progress-height = 2.8px;
align-items: center; align-items: center;
.drawer-menu-item { .drawer-menu-item {
font-size: 1rem;
margin: 6px 0;
height: 38px;
a { a {
display: block; padding: 6px 20px;
margin: 8px auto;
padding: 0 20px;
border-radius: 20px; border-radius: 20px;
text-align: center;
line-height: 34px;
color: var(--default-text-color); color: var(--default-text-color);
transition(); transition();
&:hover { &:hover {
color: var(--second-text-color); color: var(--second-text-color);
font-weight: bold; border: 1px solid var(--default-text-color);
}
&.active {
border: 1px solid var(--default-text-color);
color: var(--second-text-color);
} }
} }
.active {
border: 1px solid var(--default-text-color);
color: var(--second-text-color);
font-weight: bold;
}
} }
} }

View File

@ -1,4 +1,4 @@
$icon-size = 1.2em; $icon-size = 1.2rem;
.search-pop-overlay { .search-pop-overlay {
display: none; display: none;
@ -9,7 +9,6 @@ $icon-size = 1.2em;
width: 100%; width: 100%;
background: rgba(0, 0, 0, 0.4); background: rgba(0, 0, 0, 0.4);
z-index: $z-index-8; z-index: $z-index-8;
}
.search-popup { .search-popup {
@ -21,6 +20,7 @@ $icon-size = 1.2em;
position: fixed; position: fixed;
top: 10%; top: 10%;
width: 70%; width: 70%;
z-index: $z-index-6;
+keep-tablet() { +keep-tablet() {
width: 80%; width: 80%;
@ -30,16 +30,51 @@ $icon-size = 1.2em;
width: 90%; width: 90%;
} }
z-index: $z-index-6; .search-header {
background: var(--fourth-text-color);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
display: flex;
padding: 10px;
.search-icon, .popup-btn-close { .search-icon, .popup-btn-close {
color: var(--default-text-color);
font-size: $icon-size; font-size: $icon-size;
padding: 0 10px; padding: 0 10px;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.search-icon {
color: var(--third-text-color);
}
.popup-btn-close {
color: var(--default-text-color);
}
.search-input-container {
flex-grow: 1;
padding: 2px;
.search-input {
background: transparent;
border: 0;
outline: 0;
width: 100%;
font-size: 1.2rem;
color: var(--default-text-color);
&::-webkit-search-cancel-button {
display: none;
}
}
}
.popup-btn-close { .popup-btn-close {
cursor: pointer; cursor: pointer;
@ -48,63 +83,63 @@ $icon-size = 1.2em;
} }
} }
.search-header { }
background: var(--fourth-text-color);
border-top-left-radius: 2px;
border-top-right-radius: 2px; #search-result {
display: flex; display: flex;
padding: 10px; height: calc(100% - 55px);
} overflow: auto;
} padding: 5px 25px;
.search-result-list {
input.search-input {
background: transparent;
border: 0;
outline: 0;
width: 100%;
font-size: 1.2em;
color: var(--default-text-color);
&::-webkit-search-cancel-button {
display: none;
}
}
.search-popup {
.search-input-container {
flex-grow: 1;
padding: 2px;
}
ul.search-result-list {
margin: 10px 5px;
width: 100%; width: 100%;
height: 100%;
font-size: 1rem;
li { li {
border-bottom: 1px solid var(--border-color); border-bottom: 1px dashed var(--border-color);
margin-bottom: 20px; padding: 10px 0;
margin: 10px 0;
a { box-sizing: border-box;
display: block;
margin-bottom: 16px;
}
&:last-child { &:last-child {
margin-bottom: 0; border-bottom: none;
}
}
} }
p.search-result {
margin 0
padding 0
}
a.search-result-title { .search-result-title {
position: relative;
font-weight: bold; font-weight: bold;
margin-bottom: 10px;
padding-left: 16px;
display: flex;
align-items: center;
&::after {
content: '';
position: absolute;
width: 5px;
height: 5px;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
left: 0;
background: var(--default-text-color);
}
}
.search-result {
line-height: 2rem;
margin: 0;
padding-left: 16px;
}
a {
&:hover {
color: var(--default-text-color);
}
} }
.search-keyword { .search-keyword {
@ -113,15 +148,16 @@ input.search-input {
font-weight: bold; font-weight: bold;
} }
#search-result {
display: flex;
height: calc(100% - 55px);
overflow: auto;
padding: 5px 25px;
} }
}
#no-result { #no-result {
color: var(--third-text-color); color: var(--third-text-color);
margin: auto; margin: auto;
} }
} }
}
}

View File

@ -1,5 +1,5 @@
.paginator { .paginator {
font-size: 1rem;
margin-top: 30px; margin-top: 30px;
a.prev { a.prev {

View File

@ -1,4 +1,6 @@
$tools-item-width = 32px; $tools-item-width = 32px;
$tools-item-font-size = 1.1rem;
.side-tools-container { .side-tools-container {
position: relative; position: relative;
@ -7,7 +9,7 @@ $tools-item-width = 32px;
.tools-item { .tools-item {
width: $tools-item-width; width: $tools-item-width;
height: $tools-item-width; height: $tools-item-width;
font-size: 1.1em; font-size: $tools-item-font-size;
margin-bottom: 3px; margin-bottom: 3px;
color: var(--second-text-color); color: var(--second-text-color);
background: var(--background-color); background: var(--background-color);
@ -26,15 +28,9 @@ $tools-item-width = 32px;
+keep-tablet() { +keep-tablet() {
width: $tools-item-width * 0.9; width: $tools-item-width * 0.9;
height: $tools-item-width * 0.9; height: $tools-item-width * 0.9;
font-size: 1.05em; font-size: $tools-item-font-size * 0.9;
margin-bottom: 2px; margin-bottom: 2px;
} }
+keep-mobile() {
width: $tools-item-width * 0.8;
height: $tools-item-width * 0.8;
font-size: 1.0em;
}
} }

View File

@ -5,7 +5,7 @@
.tagcloud-content { .tagcloud-content {
text-align: justify; text-align: justify;
font-size: 1.2em; font-size: 1.2rem;
a { a {
padding: 8px 6px; padding: 8px 6px;

View File

@ -1,6 +1,6 @@
.post-toc-wrap { .post-toc-wrap {
width: 100%; width: 100%;
font-size: 0.92em; font-size: 0.92rem;
box-sizing: border-box; box-sizing: border-box;
.post-toc { .post-toc {

View File

@ -9,7 +9,7 @@ $li-margin-bottom = 12px;
width: $circle-button-width; width: $circle-button-width;
height: $circle-button-width; height: $circle-button-width;
border-radius: 50%; border-radius: 50%;
font-size: 1.2em; font-size: 1.2rem;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;

View File

@ -1,6 +1,7 @@
$avatarWidth = 46px; $avatarWidth = 46px;
$arrow-icon-width = 16px; $arrow-icon-width = 16px;
$post-nav-max-width = 220px; $post-nav-max-width = 220px;
$article-title-font-size = 1.6rem;
.article-content-container { .article-content-container {
@ -9,14 +10,14 @@ $post-nav-max-width = 220px;
.article-title { .article-title {
color: var(--second-text-color); color: var(--second-text-color);
font-weight: 600; font-weight: 600;
font-size: 1.8em; font-size: $article-title-font-size;
+keep-tablet() { +keep-tablet() {
font-size: 1.5em; font-size: $article-title-font-size * 0.9;
} }
+keep-mobile() { +keep-mobile() {
font-size: 1.2em; font-size: $article-title-font-size * 0.8;
} }
} }
@ -60,14 +61,14 @@ $post-nav-max-width = 220px;
.author { .author {
font-weight: 600; font-weight: 600;
font-size: 1.18em; font-size: 1.18rem;
display: flex; display: flex;
align-items: center; align-items: center;
.level { .level {
margin-left: 10px; margin-left: 10px;
color: #fff; color: #fff;
font-size: 0.7em; font-size: 0.8rem;
font-weight: 500; font-weight: 500;
background: var(--selection-color); background: var(--selection-color);
padding: 0 4px; padding: 0 4px;

View File

@ -1,17 +1,19 @@
$category-name-font-size = 1.6rem;
.category-container { .category-container {
keep-container(1.02, 1.02, 30px, 30px); keep-container(1.02, 1.02, 30px, 30px);
.category-name { .category-name {
color: var(--second-text-color); color: var(--second-text-color);
font-size: 1.6em; font-size: $category-name-font-size;
+keep-tablet() { +keep-tablet() {
font-size: 1.5em; font-size: $category-name-font-size * 0.9;
} }
+keep-mobile() { +keep-mobile() {
font-size: 1.4em; font-size: $category-name-font-size * 0.8;
} }
font-weight: 600; font-weight: 600;

View File

@ -3,25 +3,6 @@
@require 'keep-theme.styl' @require 'keep-theme.styl'
// ============================
// scrollbar
// ============================
* {
&::-webkit-scrollbar {
width: 6px;
height: 6px;
}
&::-webkit-scrollbar-thumb {
background: var(--scroll-bar-color);
}
&::-webkit-scrollbar-track {
background: var(--scroll-bar-bg-color);
}
}
// ============================ // ============================
// html, body // html, body
// ============================ // ============================
@ -48,6 +29,25 @@ html, body {
} }
// ============================
// scrollbar
// ============================
* {
&::-webkit-scrollbar {
width: 6px;
height: 6px;
}
&::-webkit-scrollbar-thumb {
background: var(--scroll-bar-color);
}
&::-webkit-scrollbar-track {
background: var(--scroll-bar-bg-color);
}
}
// ============================ // ============================
// selection // selection
// ============================ // ============================
@ -66,6 +66,7 @@ ul, ol, li {
list-style: none; list-style: none;
} }
// ============================ // ============================
// a // a
// ============================ // ============================
@ -80,6 +81,7 @@ a {
} }
// ============================ // ============================
// button // button
// ============================ // ============================
@ -99,7 +101,7 @@ button {
cursor: pointer; cursor: pointer;
white-space: nowrap; white-space: nowrap;
border-radius: 5px; border-radius: 5px;
padding: 0.5em 1em; padding: 8px 16px;
background: var(--background-color); background: var(--background-color);
hover-style(1.1, 1.1); hover-style(1.1, 1.1);
@ -120,6 +122,7 @@ button {
align-items: center; align-items: center;
} }
// ============================ // ============================
// clear float // clear float
// ============================ // ============================

View File

@ -18,14 +18,14 @@ disable-user-select() {
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
font-weight: bold; font-weight: bold;
line-height: 1.6; line-height: 1.8;
opacity: 0; opacity: 0;
outline: 0; outline: 0;
padding: 2px 6px; padding: 2px 6px;
position: absolute; position: absolute;
vertical-align: middle; vertical-align: middle;
white-space: nowrap; white-space: nowrap;
font-size: 1.1em; font-size: 1.08rem;
disable-user-select(); disable-user-select();
the-transition(); the-transition();

View File

@ -4,10 +4,10 @@ $code-block {
overflow: auto; overflow: auto;
margin: 20px 0; margin: 20px 0;
padding: 0; padding: 0;
font-size 0.95em; font-size 0.96rem;
color: var(--highlight-foreground); color: var(--highlight-foreground);
background: var(--highlight-background); background: var(--highlight-background);
line-height: 1.5em; line-height: 1.5rem;
transition: all 0.5s ease; transition: all 0.5s ease;
} }
@ -62,10 +62,10 @@ pre {
} }
figcaption { figcaption {
font-size: 1em; font-size: 1rem;
color: var(--highlight-foreground); color: var(--highlight-foreground);
line-height: 1em; line-height: 1rem;
margin-bottom: 1em; margin-bottom: 1rem;
a { a {
float: right; float: right;

View File

@ -1,4 +1,5 @@
.markdown-body { .markdown-body {
font-size: 1rem;
blockquote { blockquote {
@ -13,10 +14,12 @@
background: var(--second-background-color); background: var(--second-background-color);
} }
p { p {
line-height: 2em; line-height: 2rem;
} }
a { a {
position: relative; position: relative;
outline: 0; outline: 0;
@ -52,7 +55,7 @@
ul > li, ol > li { ul > li, ol > li {
margin-left: 16px; margin-left: 16px;
line-height: 2em; line-height: 2rem;
} }
ul { ul {
@ -102,70 +105,70 @@
} }
h1 { h1 {
font-size: 1.8em; font-size: 1.8rem;
font-weight: 600; font-weight: 600;
line-height: 1.2em; line-height: 1.2rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.7em; font-size: 1.7rem;
line-height: 1.1em; line-height: 1.1rem;
} }
} }
h2 { h2 {
font-size: 1.7em; font-size: 1.7rem;
font-weight: 600; font-weight: 600;
line-height: 1.2em; line-height: 1.2rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.6em; font-size: 1.6rem;
line-height: 1.1em; line-height: 1.1rem;
} }
} }
h3 { h3 {
font-size: 1.6em; font-size: 1.6rem;
font-weight: 550; font-weight: 550;
line-height: 1.16em; line-height: 1.16rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.5em; font-size: 1.5rem;
line-height: 1.06em; line-height: 1.06rem;
} }
} }
h4 { h4 {
font-size: 1.5em; font-size: 1.5rem;
font-weight: 550; font-weight: 550;
line-height: 1.16em; line-height: 1.16rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.4em; font-size: 1.4rem;
line-height: 1.06em; line-height: 1.06rem;
} }
} }
h5 { h5 {
font-size: 1.28em; font-size: 1.28rem;
font-weight: 500; font-weight: 500;
line-height: 1.12em; line-height: 1.12rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.18em; font-size: 1.18rem;
line-height: 1.02em; line-height: 1.02rem;
} }
} }
h6 { h6 {
font-size: 1.2em; font-size: 1.2rem;
font-weight: 500; font-weight: 500;
line-height: 1.12em; line-height: 1.12rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.1em; font-size: 1.1rem;
line-height: 1.02em; line-height: 1.02rem;
} }
} }

View File

@ -1,3 +1,5 @@
.home-content-container { .home-content-container {
.home-article-list { .home-article-list {
@ -11,12 +13,12 @@
position: absolute; position: absolute;
top: 10px; top: 10px;
right: 12px; right: 12px;
font-size: 1.2em; font-size: 1.2rem;
transform: rotate(45deg); transform: rotate(45deg);
color: var(--third-text-color); color: var(--third-text-color);
+keep-tablet() { +keep-tablet() {
font-size: 1.16em; font-size: 1.16rem;
} }
} }
@ -25,16 +27,16 @@
position: relative; position: relative;
font-weight: 600; font-weight: 600;
color: var(--second-text-color); color: var(--second-text-color);
font-size: 1.5em; font-size: 1.5rem;
line-height: 1.5em; line-height: 1.5rem;
+keep-tablet() { +keep-tablet() {
font-size: 1.3em; font-size: 1.3rem;
} }
+keep-mobile() { +keep-mobile() {
font-size: 1.2em; font-size: 1.2rem;
} }
margin: 0; margin: 0;
@ -45,7 +47,7 @@
.home-article-content { .home-article-content {
text-align: justify; text-align: justify;
margin: 20px 0; margin: 20px 0;
line-height: 2em; line-height: 2rem;
} }
@ -54,7 +56,7 @@
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
color: var(--third-text-color); color: var(--third-text-color);
font-size: 1em; font-size: 1rem;
.home-article-meta-info { .home-article-meta-info {

View File

@ -1,4 +1,4 @@
$header-progress-height = 3px; $header-progress-height = 2.8px;
$temp-width = hexo-config('style.left_side_width'); $temp-width = hexo-config('style.left_side_width');
$page-aside-width = $temp-width ? convert($temp-width) : 260px; $page-aside-width = $temp-width ? convert($temp-width) : 260px;

View File

@ -1,17 +1,19 @@
$tag-name-font-size = 1.6rem;
.tag-container { .tag-container {
keep-container(1.02, 1.02, 30px, 30px); keep-container(1.02, 1.02, 30px, 30px);
.tag-name { .tag-name {
color: var(--second-text-color); color: var(--second-text-color);
font-size: 1.6em; font-size: $tag-name-font-size;
+keep-tablet() { +keep-tablet() {
font-size: 1.5em; font-size: $tag-name-font-size * 0.9;
} }
+keep-mobile() { +keep-mobile() {
font-size: 1.4em; font-size: $tag-name-font-size * 0.8;
} }
font-weight: 600; font-weight: 600;

View File

@ -3,6 +3,7 @@ KEEP.utils = {
headerProgress_dom: document.querySelector('.header-progress'), headerProgress_dom: document.querySelector('.header-progress'),
pageTop_dom: document.querySelector('.page-main-content-top'), pageTop_dom: document.querySelector('.page-main-content-top'),
firstScreen_dom: document.querySelector('.first-screen-container'), firstScreen_dom: document.querySelector('.first-screen-container'),
html_root_dom: document.querySelector('html'),
printThemeInfo() { printThemeInfo() {
const themeInfo = `${KEEP.themeInfo.name} v${KEEP.themeInfo.version}`; const themeInfo = `${KEEP.themeInfo.name} v${KEEP.themeInfo.version}`;
@ -67,7 +68,7 @@ KEEP.utils = {
const fs = Number(initFontSize.substring(0, initFontSize.length - 2)); const fs = Number(initFontSize.substring(0, initFontSize.length - 2));
const setFontSize = (defaultFontSize) => { const setFontSize = (defaultFontSize) => {
document.body.style.fontSize = `${fs * (1 + defaultFontSize * 0.06)}px`; this.html_root_dom.style.fontSize = `${fs * (1 + defaultFontSize * 0.05)}px`;
} }
document.querySelector('.tool-font-adjust-plus').addEventListener('click', () => { document.querySelector('.tool-font-adjust-plus').addEventListener('click', () => {