17 lines
472 B
CSS
17 lines
472 B
CSS
/* RESET CSS */
|
|
*, *::before, *::after { box-sizing: border-box; }
|
|
* { margin: 0; padding: 0; }
|
|
ul[role='list'], ol[role='list'] { list-style: none; }
|
|
html:focus-within { scroll-behavior: smooth; }
|
|
a:not([class]) { text-decoration-skip-ink: auto; }
|
|
input, button, textarea, select { font: inherit; }
|
|
body, html { height: 100%; scroll-behavior: smooth; }
|
|
/* END RESET CSS */
|
|
|
|
.rewind {
|
|
display: flex;
|
|
height: 100vh;
|
|
background-color: #f5f5f5;
|
|
border-radius: 5px;
|
|
}
|