blob: 655e1812962736eef44b46618869aaf1dbdb5d12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", "Noto Sans", sans-serif;
transition-timing-function: ease-in-out;
}
body {
user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
}
|