Skip to content

Instantly share code, notes, and snippets.

@nonaybay
Last active October 16, 2020 06:45
Show Gist options
  • Select an option

  • Save nonaybay/fe03daf4be59145c9bb7ba73dcc3328f to your computer and use it in GitHub Desktop.

Select an option

Save nonaybay/fe03daf4be59145c9bb7ba73dcc3328f to your computer and use it in GitHub Desktop.
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
border: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
outline: none;
padding: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html {
background-color: #ffffff;
color: #000000;
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: normal;
line-height: 1.5;
letter-spacing: normal;
}
body {
text-align: justify;
}
p:not(:last-child) {
margin-bottom: .5em;
}
.title {
margin-bottom: .875em;
text-align: center;
text-transform: uppercase;
}
footer {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
padding: 5cm 0 0;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
}
footer p {
display: block;
font-size: 16px;
}
footer p::before {
content: '';
height: 1px;
width: 150%;
background-color: black;
position: relative;
bottom: .5em;
display: block;
margin-left: -25%;
}
footer p span {
display: block;
text-align: center;
font-size: 14px;
}
footer p span::before {
content: '(';
}
footer p span::after {
content: ')';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment