Files
eruda/src/style.scss
2016-05-09 20:03:48 +08:00

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;
}