Skip to content

Instantly share code, notes, and snippets.

@Glasti1
Created March 20, 2021 18:13
Show Gist options
  • Save Glasti1/8b59023bc686b1060a2591da7e739552 to your computer and use it in GitHub Desktop.
Save Glasti1/8b59023bc686b1060a2591da7e739552 to your computer and use it in GitHub Desktop.
403 Forbidden | cpc-403
.base.io
h1.io 403
h2 Access forbidden
h5 (I'm sorry buddy...)
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
body{
background-color:#332851;
.base{
width:100%;
height:100vh;
position:relative;
overflow:hidden;
display: flex;
align-items: center;
justify-content: center;
cursor:pointer;
flex-direction:column;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
h1{
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
font-family: 'Ubuntu', sans-serif;
text-transform:uppercase;
text-align:center;
font-size:30vw;
display:block;
margin:0;
color:#9ae1e2;
position:relative;
z-index:0;
animation: colors .4s ease-in-out forwards;
animation-delay: 1.7s;
&:before{
content:"U";
position:absolute;
top:-9%;
right:40%;
transform:rotate(180deg);
font-size:15vw;
color:#f6c667;
z-index:-1;
text-align:center;
animation:lock .2s ease-in-out forwards;
animation-delay: 1.5s;
}
}
h2{
font-family: 'Cabin', sans-serif;
color:#9ae1e2;
font-size:5vw;
margin:0;
text-transform:uppercase;
text-align:center;
animation: colors .4s ease-in-out forwards;
animation-delay: 2s;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
h5{
font-family: 'Cabin', sans-serif;
color:#9ae1e2;
font-size:2vw;
margin:0;
text-align:center;
opacity:0;
animation: show 2s ease-in-out forwards;
color:#ca3074;
animation-delay: 3s;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
}
}
@keyframes lock{
50%{top:-4%;}
100%{top:-6%;}
}
@keyframes colors{
50%{transform:scale(1.1);}
100%{color:#ca3074;}
}
@keyframes show{
100%{opacity:1;}
}
<link href="https://fonts.googleapis.com/css?family=Cabin|Ubuntu:700" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment