118 lines
1.7 KiB
Plaintext
118 lines
1.7 KiB
Plaintext
// reset
|
|
@import '~antd/dist/antd.less';
|
|
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img{
|
|
border: medium none;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 100%;
|
|
}
|
|
body, button, input, select, textarea{
|
|
line-height: 1.5;
|
|
font-family: Arial, 'Microsoft Yahei';
|
|
}
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: normal;
|
|
}
|
|
em {
|
|
font-style:normal;
|
|
}
|
|
ul, ol{
|
|
list-style: none;
|
|
}
|
|
textarea{
|
|
resize: none;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
a:hover{
|
|
text-decoration: none;
|
|
transition: all 0.3s ease-in;
|
|
}
|
|
|
|
.root{
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
min-height: 50rem;
|
|
}
|
|
|
|
.logo-container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 9999;
|
|
background-color: #02020e;
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
width: 2px;
|
|
height: 8px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #02020e;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #005fd7;
|
|
border-radius: 4px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #00daf9;
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 1736px) {
|
|
html {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 1520px) {
|
|
html {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
|
|
.table-ellipsis {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.red {
|
|
color: rgb(255, 73, 73) !important;
|
|
}
|
|
|
|
.green {
|
|
color: greenyellow !important;
|
|
}
|
|
|
|
.white {
|
|
color: #fff !important;
|
|
}
|
|
|
|
.yellow {
|
|
color: yellow;
|
|
}
|
|
|
|
.d3axisWhite line{
|
|
stroke: #fff;
|
|
}
|
|
|
|
.d3axisWhite path{
|
|
stroke: #ccc;
|
|
}
|
|
|
|
.d3axisWhite text{
|
|
fill: #ccc;
|
|
} |