mirror of
https://github.com/daief/gm-response-proxy.git
synced 2026-05-03 03:29:34 +08:00
37 lines
635 B
Plaintext
37 lines
635 B
Plaintext
[class*='@{prefix}__'] {
|
|
font-size: @fontSize;
|
|
font-family: @baseFamily;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-feature-settings: 'tnum';
|
|
font-weight: 400;
|
|
}
|
|
|
|
.@{prefix}__page-root-fixed-button {
|
|
position: fixed;
|
|
top: 148px;
|
|
left: 0;
|
|
width: 40px;
|
|
height: 40px;
|
|
z-index: 4000;
|
|
cursor: pointer;
|
|
opacity: 0.5;
|
|
transition: opacity 0.3s;
|
|
box-shadow: 0 0 10px 0px rgb(0 0 0 / 35%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: @color2;
|
|
color: @textColor;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
&.hidden {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
}
|