Skip to content

Instantly share code, notes, and snippets.

@emmykolic
Created February 20, 2023 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emmykolic/32eb4a67d7dae0b58f1cfdab764abe3e to your computer and use it in GitHub Desktop.
Save emmykolic/32eb4a67d7dae0b58f1cfdab764abe3e to your computer and use it in GitHub Desktop.
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
transition: 0.5s;
transition-timing-function: ease-in;
background-image: linear-gradient(
to right bottom,
rgb( 51, 255, 141 ),
#acc9ffa8
);
display: flex;
align-items: center;
justify-content: center;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
box-shadow: 0 4px 10px rgba(27, 245, 235 , 0.5);
border-radius: 15px;
width: 600px;
background-color: rgba(255, 255, 255, 0.3);
margin: 10px;
}
.fa-quote-left,
.fa-quote-right {
font-size: 35px;
color: rgb(170, 0, 0);
}
.quote {
text-align: center;
font-size: 40px;
font-weight: bold;
}
.author {
margin: 10px;
text-align: right;
font-size: 25px;
font-style: italic;
font-family: cursive;
}
hr {
margin: 10px 0;
width: 100%;
border: 1px solid black;
background-color: black;
}
.button {
width: 100%;
display: flex;
padding: 10px;
justify-content: space-between;
align-items: center;
margin: 9px;
}
.twitter {
border: 1px solid rgb(102, 179, 255);
border-radius: 4px;
background-color: rgb(102, 179, 255);
color: white;
padding-bottom: 15px;
text-align: center;
font-size: 1.8em;
width: 60px;
height: 35px;
line-height: 40px;
}
.next {
font-size: 18px;
border-radius: 5px;
cursor: pointer;
padding: 10px;
margin-top: 5px;
font-weight: bold;
color: white;
background-image: linear-gradient(
to right bottom,
rgb(22, 210, 248),
#bcd7ffa8
);
}
.container:hover {
box-shadow: 0 10px 10px rgb(0, 180, 230);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment