You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
387 B
24 lines
387 B
.flexing { |
|
box-sizing: border-box; |
|
} |
|
|
|
.flex-container { |
|
display: flex; |
|
flex-direction: row; |
|
font-size: 30px; |
|
text-align: center; |
|
} |
|
|
|
.flex-item-left { |
|
|
|
padding: 10px; |
|
flex: 50%; |
|
} |
|
|
|
|
|
/* Responsive layout - makes a one column-layout instead of two-column layout */ |
|
@media (max-width: 800px) { |
|
.flex-container { |
|
flex-direction: column; |
|
} |
|
} |