27 lines
464 B
CSS
27 lines
464 B
CSS
.centered {
|
|
width: 100vw;
|
|
max-width: 100%;
|
|
height: 100vh;
|
|
|
|
display: grid;
|
|
align-content: center;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.top-fade {
|
|
background: linear-gradient(rgba(11,11,12,1) 0%, rgba(11,11,12,0.9 20%), rgba(0,0,0,0.1), 100%)
|
|
}
|
|
|
|
.dashed-bottom {
|
|
border-bottom: 5px dashed white;
|
|
}
|
|
|
|
body {
|
|
overflow-x: hidden;
|
|
margin: 0;
|
|
height: 100%;
|
|
padding-bottom: 0px;
|
|
}
|