Files
cloud-mail/mail-vue/src/style.css
2025-04-26 17:24:39 +08:00

80 lines
1.3 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
}
a{
color: #333;
}
#app {
width: 100%;
height: 100%;
}
@font-face {
font-family: 'HarmonyOS';
src: url('@/assets/fonts/HarmonyOS_Sans_SC_Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}
:deep(.el-input__inner:focus) {
background-color: transparent !important;
border-color: #dcdfe6 !important;
}
body {
font-family: 'HarmonyOS', -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif;
line-height: 1.5;
color: #333;
background-color: #fff;
font-size: 14px;
}
* {
-webkit-tap-highlight-color: transparent;
}
ul, ol {
list-style: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
button, input, select, textarea {
font-family: inherit;
font-size: inherit;
outline: none;
border: none;
background: none;
}
*:focus {
outline: none;
}
:root {
--el-color-primary: #1890ff;
--el-color-primary-dark-2: #1064c0;
--el-color-primary-light-3: #4dabff;
--el-color-primary-light-5: #69c0ff;
--el-color-primary-light-7: #91d5ff;
--el-color-primary-light-9: #e6f7ff;
--el-text-color-regular: #333;
}