My personal website
1html {
2 -ms-text-size-adjust: 100%;
3 -webkit-text-size-adjust: 100%;
4 box-sizing: border-box;
5}
6
7*,
8*::before,
9*::after {
10 box-sizing: inherit;
11}
12
13body {
14 margin: 0;
15}
16
17a {
18 text-decoration: none;
19}
20
21a:active,
22a:hover {
23 outline: 0;
24 text-decoration: underline;
25}
26
27b,
28strong {
29 font-weight: bold;
30}
31
32sub,
33sup {
34 font-size: 75%;
35 line-height: 0;
36 position: relative;
37 vertical-align: baseline;
38}
39
40sup {
41 top: -0.5em;
42}
43
44sub {
45 bottom: -0.25em;
46}
47
48img {
49 border: 0;
50}
51
52svg:not(:root) {
53 overflow: hidden;
54}
55
56hr {
57 -moz-box-sizing: content-box;
58 box-sizing: content-box;
59 height: 0;
60}
61
62pre {
63 overflow: auto;
64}
65
66code,
67kbd,
68pre,
69samp {
70 font-family: monospace, monospace;
71 font-size: 1em;
72}