20 lines
308 B
CSS
Executable file
20 lines
308 B
CSS
Executable file
body,
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--background);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
transition: all 300ms cubic-bezier(0, 1, 1, 1);
|
|
scroll-behavior: smooth;
|
|
line-height: 100%;
|
|
|
|
a:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
text-decoration: none;
|
|
}
|