Created
July 16, 2019 18:16
-
-
Save alexminsk7/e0397fb6f533eb08de40f4beb6c563ee to your computer and use it in GitHub Desktop.
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
| /* MAIN SETTINGS | |
| ========================= */ | |
| *, | |
| *:before, | |
| *:after { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| font-size: 10px; | |
| font-family: '', sans-serif; | |
| /* font-family: 'Playfair Display', serif; */ | |
| background-color: #b4b7b8; | |
| } | |
| .aligner { | |
| text-align: center; | |
| } | |
| .centro { | |
| margin: 0px auto; | |
| } | |
| .upper { | |
| text-transform: uppercase; | |
| } | |
| .bold { | |
| font-weight: 700; | |
| } | |
| .light { | |
| font-weight: 300; | |
| } | |
| .white { | |
| color: #fff; | |
| } | |
| a, a:hover, button, button:hover { | |
| transition: all 200ms linear; | |
| cursor: pointer; | |
| text-decoration: none; | |
| } | |
| li { | |
| list-style: none; | |
| } | |
| /* FLEX FRAMEWORK | |
| ========================= */ | |
| .main_flex {display:flex;display:-webkit-flex;-webkit-flex-flow:row wrap;flex-flow:row wrap;} | |
| .main_flex__nowrap{display:flex;display:-webkit-flex;-webkit-flex-flow:row nowrap;flex-flow:row nowrap;} | |
| .flex__centr{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;} | |
| .flex__jcontent_between {justify-content:space-between;-webkit-justify-content:space-between;} | |
| .flex__jcontent_start{justify-content:flex-start;-webkit-justify-content:flex-start;} | |
| .flex__jcontent_end{justify-content:flex-end;-webkit-justify-content:flex-end;} | |
| .flex__jcontent_center{justify-content:center;-webkit-justify-content:center;} | |
| .flex__jcontent_around{justify-content:space-around;-webkit-justify-content:space-around;} | |
| .flex__jcontent_between{justify-content:space-between;-webkit-justify-content:space-between;} | |
| .flex__auto {flex:auto;-webkit-flex:auto;-ms-flex:auto;} | |
| .flex__align-items_start{align-items:flex-start;-webkit-align-items:flex-start;} | |
| .flex__align-items_end{align-items:flex-end;-webkit-align-items:flex-end;} | |
| .flex__align-items_baseline{align-items:baseline;-webkit-align-items:baseline;} | |
| .flex__align-items_stretch{align-items:stretch;-webkit-align-items:stretch;} | |
| .flex__align-items_center{align-items:center;-webkit-align-items:center;} | |
| .flex__align-content_flex-start{align-content:flex-start;-webkit-align-content:flex-start;} | |
| .flex__align-content_flex-end{align-content:flex-end;-webkit-align-content:flex-end;} | |
| .flex__align-content_space-between{align-content:space-between;-webkit-align-content:space-between;} | |
| .flex__align-content_center{align-content:center;-webkit-align-content:center;} | |
| .flex__align-content_space-around{align-content:space-around;-webkit-align-content:space-around;} | |
| .flex__align-content_stretch{align-content:stretch;-webkit-align-content:stretch;} | |
| .flex__flex-grow_01{flex-grow:1;-webkit-flex-grow:1;} | |
| .flex__flex-grow_02{flex-grow:2;-webkit-flex-grow:2;} | |
| .flex__flex-grow_03{flex-grow:3;-webkit-flex-grow:3;} | |
| .flex__flex-grow_04{flex-grow:4;-webkit-flex-grow:4;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment