ahmedeltatawe
Version:
Project Initializer
50 lines (42 loc) • 712 B
CSS
*,
*::before,
*::after {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
html {
box-sizing: inherit;
scroll-behavior: smooth;
height: 100%;
width: 100%;
}
html::-webkit-scrollbar {
width: 0px;
}
ol,
ul {
list-style: none;
text-decoration: none;
}
img {
max-width: 100%;
}
table {
border-collapse: collapse;
}
textarea {
white-space: revert;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
background-color: #000;
color: #fff;
}