Created
February 26, 2020 07:12
-
-
Save DK013/e4fb27ebd6cd6a21f1717cd040b43f24 to your computer and use it in GitHub Desktop.
html5 style bootstrapper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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