Skip to content

Instantly share code, notes, and snippets.

@destinio
Last active March 25, 2022 18:05
Show Gist options
  • Save destinio/fe2efab6754b1c5e8a879c96161c3544 to your computer and use it in GitHub Desktop.
Save destinio/fe2efab6754b1c5e8a879c96161c3544 to your computer and use it in GitHub Desktop.
:root {
--black: #111;
--gray: #555;
--gray-dark: #1c1d21;
--gray-light: #888;
--white: #f7f7f7;
--red: #e94a50;
--green: #7dbb5c;
--blue: #4fb3db;
--orange: #fe7c0d;
--yellow: #f2d533;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#root {
height: 100vh;
}
body {
background-color: var(--gray-dark);
color: var(--white);
font-family: Helvetica, sans-serif;
}
.container {
width: 100%;
max-width: 60rem;
margin: auto;
}
.flex {
display: flex;
}
.flex-center {
justify-content: center;
align-items: center;
}
.h-100 {
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment