Spaces:
Sleeping
Sleeping
File size: 908 Bytes
c8210cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
body,
html,
#root {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
font-family: "PingFang SC";
font-size: 14px;
line-height: 21px;
}
#global__message-container {
position: fixed;
left: 0;
right: 0;
top: 72px;
z-index: 999;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.f {
color: #6674D6;
font-family: DIN;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 14px;
position: relative;
top: -4px;
padding: 0 3px;
&::after {
content: '·';
position: absolute;
top: 0;
right: -2px;
color: #6674D6;
}
}
p> :nth-last-child(1).f,
li> :nth-last-child(1).f {
&::after {
content: '';
opacity: 0;
}
}
.fnn2 {
color: #6674D6;
font-family: DIN;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 14px;
position: relative;
top: -2px;
}
|