Skip to content

Instantly share code, notes, and snippets.

@CodeMyUI
Created September 5, 2018 23:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodeMyUI/d27843e9360d3e57c86c14e25d62db76 to your computer and use it in GitHub Desktop.
Save CodeMyUI/d27843e9360d3e57c86c14e25d62db76 to your computer and use it in GitHub Desktop.
rémi's pop-up
<div class="modal">
<p class="message">Look at this fancy pop-up</p>
<div class="options">
<button class="btn">Yes</button>
<button class="btn">No</button>
</div>
</div>
html {
font-size: 18px;
}
body {
font-family: "Questrial", sans-serif;
background-color: #ffec63;
background-image: linear-gradient(
45deg,
#ffd966 25%,
transparent 25%,
transparent 75%,
#ffd966 75%,
#ffd966
),
linear-gradient(
-45deg,
#ffd966 25%,
transparent 25%,
transparent 75%,
#ffd966 75%,
#ffd966
);
background-size: 60px 60px;
background-position: 0 0;
animation: slide 4s infinite linear;
}
@keyframes slide {
from {
background-position: 0 0;
}
to {
background-position: -120px 60px;
}
}
.modal {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: auto;
display: inline-flex;
flex-direction: column;
align-items: center;
padding: 1.6rem 3rem;
border: 3px solid black;
border-radius: 5px;
background: white;
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}
.message {
font-size:1.1rem;
margin-bottom: 1.6rem;
margin-top: 0;
}
.btn {
font-family:inherit;
font-size: inherit;
background: white;
padding: 0.3rem 3.4rem;
border: 3px solid black;
margin-right: 2.6rem;
box-shadow: 0 0 0 black;
transition: all 0.2s;
}
.btn:last-child {
margin: 0;
}
.btn:hover {
box-shadow: 0.4rem 0.4rem 0 black;
transform: translate(-0.4rem, -0.4rem);
}
.btn:active {
box-shadow: 0 0 0 black;
transform: translate(0, 0);
}
.options {
display: flex;
flex-direction: row;
justify-content: space-between;
}
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment