Cargando...
xxxxxxxxxx
<div class="container">
<h1 class="glitch">GLITCH</h1>
</div>
xxxxxxxxxx
@import 'https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900';
.container {
height: 100vh;
background: #333;
display: grid;
place-items: center;
font-size: 10px;
}
.container .glitch {
color: #fff;
font-size: 5em;
position: relative;
font-family: 'Roboto';
font-weight: 700;
}
.container .glitch::before,
.container .glitch::after {
content: 'GLITCH';
position: absolute;
top: 0;
left: 0;
right: 0;
overflow: hidden;
background-color: #333;
xxxxxxxxxx
Comentarios (0)