.flex { display: flex; } .flex-1 { flex: 1; } .flex-2 { flex: 2; } .flex-3 { flex: 3; } .flex-5 { flex: 5; } .flex-8 { flex: 8; } .a-i-c { align-items: center; } .flex_base { display: flex; align-items: center; justify-content: center; } .j-c-s-a { justify-content: space-around; } .j-c-s-b { justify-content: space-between; } .j-c-c { justify-content: center; } .f-d-c { flex-direction: column; } .j-c-f-s { justify-content: flex-start; } .j-c-f-e { justify-content: flex-end; } .flex-wrap { flex-wrap: wrap; }