mirror of
https://github.com/seigler/seigler.github.io
synced 2025-07-27 07:16:09 +00:00
21 lines
328 B
Text
21 lines
328 B
Text
/* micro styles reset */
|
|
*, :before, :after {
|
|
box-sizing: inherit;
|
|
margin: 0;
|
|
padding: 0;
|
|
transform-style: preserve-3d;
|
|
font-family: inherit;
|
|
}
|
|
html {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
color: #DA0;
|
|
}
|
|
a {
|
|
color: inherit;
|
|
&:hover {
|
|
background-color: #DA0;
|
|
color: #20282a;
|
|
}
|
|
}
|