url-minify/frontend/styles/globals.css

54 lines
990 B
CSS

html,
body {
padding: 0;
margin: 0;
width: 100vw;
overflow-x: hidden;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
overflow-y: auto;
}
a, a:hover
{
color: inherit;
text-decoration: none;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
section {
width: 100vw;
min-height: 100vh;
}
.flex-column {
display: flex;
flex-direction: column;
background-image: url('./../assets/bg/main-bg.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.main-bg {
background-image: url('./../assets/bg/main-bg.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
body::-webkit-scrollbar {
width: 10px;
z-index: 100;
background-color: white;
}
body::-webkit-scrollbar-thumb {
background-color: rgb(61, 61, 61);
border-width: 2px 0 2px;
border-radius: 10px;
}