Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 29 additions & 23 deletions vueblog/src/assets/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,54 +13,60 @@
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
user-select: none; /* 禁止用户鼠标在页面上选中文字/图片等 */
-webkit-tap-highlight-color: transparent; /* webkit是苹果浏览器引擎,tap点击,highlight背景高亮,color颜色,颜色用数值调节 */
/* background: var(--color-background); */
/* color: var(--color-text); */
/* rem vw/vh */
width: 100vw;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
user-select: none;
/* 禁止用户鼠标在页面上选中文字/图片等 */
-webkit-tap-highlight-color: transparent;
/* webkit是苹果浏览器引擎,tap点击,highlight背景高亮,color颜色,颜色用数值调节 */
/* background: var(--color-background); */
/* color: var(--color-text); */
/* rem vw/vh */
/* width: 100vw; */
}

a {
/* color: var(--color-text); */
text-decoration: none;
/* color: var(--color-text); */
text-decoration: none;
}


.clear-fix::after {
clear: both;
content: '';
display: block;
width: 0;
height: 0;
visibility: hidden;
clear: both;
content: '';
display: block;
width: 0;
height: 0;
visibility: hidden;
}

.clear-fix {
zoom: 1;
zoom: 1;
}

.left {
float: left;
float: left;
}

.right {
float: right;
float: right;
}
ol, ul,li {

ol,
ul,
li {
list-style: none;
}

* {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
}