mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-20 09:38:37 +08:00
36 lines
567 B
SCSS
36 lines
567 B
SCSS
@import "variable";
|
|
|
|
.container {
|
|
pointer-events: none;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100000;
|
|
transform: translateZ(0);
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
* {
|
|
box-sizing: border-box;
|
|
pointer-events: all;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
h1, h2, h3, h4 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.blue {
|
|
color: $blue;
|
|
}
|
|
|
|
.red {
|
|
color: $red;
|
|
}
|
|
|