2022-01-31 07:06:01 +08:00
|
|
|
@import "main.sass"
|
|
|
|
|
|
|
|
// 元素的默认状态
|
|
|
|
html, body
|
|
|
|
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
|
|
|
|
font-size: 16px
|
|
|
|
word-spacing: 1px
|
|
|
|
-ms-text-size-adjust: 100%
|
|
|
|
-webkit-text-size-adjust: 100%
|
|
|
|
-moz-osx-font-smoothing: grayscale
|
|
|
|
-webkit-font-smoothing: antialiased
|
|
|
|
box-sizing: border-box
|
|
|
|
margin: 0
|
|
|
|
padding: 0
|
|
|
|
color: var(--color-default)
|
|
|
|
background-color: var(--background-default)
|
|
|
|
min-height: 100vh
|
|
|
|
|
2022-02-07 23:56:33 +08:00
|
|
|
html::-webkit-scrollbar,
|
|
|
|
body::-webkit-scrollbar
|
|
|
|
display: none
|
|
|
|
|
2022-01-31 07:06:01 +08:00
|
|
|
button
|
|
|
|
background: #cc1414
|
|
|
|
color: #ffffff
|
|
|
|
border: none
|
|
|
|
border-radius: .25rem
|
2022-01-31 14:21:50 +08:00
|
|
|
cursor: pointer
|
|
|
|
padding-left: 1rem
|
|
|
|
padding-right: 1rem
|
|
|
|
min-height: 2rem
|
|
|
|
font-weight: 600
|
2022-01-31 07:06:01 +08:00
|
|
|
a
|
|
|
|
text-decoration: none
|
|
|
|
a:link //未访问的
|
|
|
|
color: #222222
|
|
|
|
a:visited //已访问的
|
|
|
|
color: #444444
|
|
|
|
a:active //点击时
|
|
|
|
color: #2233cc
|