nuxt_site/assets/css/root/root.scss
2024-05-02 21:28:18 +08:00

121 lines
1.9 KiB
SCSS

:root {
--rootColor: #b01e28;
--headerheight:105px
}
// body {
// // background-color: #0a0a0a;
// font-family: Inter;
// }
html,body{
padding: 0;
margin: 0;
font-family: "OpenSans-Regular", Arial, Helvetica, sans-serif;
}
textarea {
-webkit-appearance: none;
}
input, button, textarea, checkbox, select, radio, form {
vertical-align: top;
}
.font {
font-weight: bold;
text-transform: uppercase
}
.dNone {
display: None !important;
}
.f1 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.f2 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.f3 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
}
.f4 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
}
.f5 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 5;
}
.op0 {
opacity: 0;
}
* {
font-family: ;
font-weight: 550;
}
.rootBg {
background-color: var(--rootColor);
}
.rootFc {
color: var(--rootColor);
}
.list_none animate__animated animate__fadeIn {
width: 100%;
display: flex;
justify-content: center;
}
.ible-btn {
display: flex;
justify-content: center;
align-items: center;
padding: 15px 20px;
background-color: var(--rootColor);
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
cursor: pointer;
}
.ible-btn:hover {
background-color: #fff;
transform: scale(0.9);
color: var(--rootColor)
}
.ible-btn:link, .ible-btn:visited {
text-decoration: none;
}