File size: 1,222 Bytes
271613e |
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
@use 'variable' as *;
@use 'mixin' as *;
@use 'luna' as *;
.container {
min-width: 320px;
pointer-events: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 9999999;
color: var(--foreground);
font-family: $font-family;
font-size: $font-size;
direction: ltr;
&.dark {
color-scheme: dark;
}
* {
box-sizing: border-box;
pointer-events: all;
user-select: none;
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: none;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
h1,
h2,
h3,
h4 {
margin: 0;
}
h2 {
font-size: $font-size;
[class^='icon-'],
[class*=' icon-'] {
font-weight: normal;
}
}
&.inline {
position: static;
}
}
.hidden {
display: none;
}
.icon-disabled {
opacity: 0.5;
pointer-events: none;
cursor: default !important;
&:active {
color: inherit !important;
}
}
.tag-name-color {
color: var(--tag-name-color);
}
.function-color {
color: var(--function-color);
}
.attribute-name-color {
color: var(--attribute-name-color);
}
.operator-color {
color: var(--operator-color);
}
.string-color {
color: var(--string-color);
}
|