Skip to content

Instantly share code, notes, and snippets.

@DK013
Created February 26, 2020 07:12
Show Gist options
  • Save DK013/e4fb27ebd6cd6a21f1717cd040b43f24 to your computer and use it in GitHub Desktop.
Save DK013/e4fb27ebd6cd6a21f1717cd040b43f24 to your computer and use it in GitHub Desktop.
html5 style bootstrapper
html, body {
height: 100%;
width: 100%;
}
* {
transition: all 0.2s easy-in-out;
}
.flex {
display: flex;
flex-direction: column;
}
.flex.d-row {
flex-direction: row;
}
.flex.center {
align-items: center;
align-content: center;
justify-content: center;
}
/* start custom styles for {{name}}*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment