mirror of
https://github.com/dwinkler1/dwinkler1.github.io.git
synced 2026-02-19 14:40:57 -05:00
42 lines
575 B
CSS
42 lines
575 B
CSS
/* css styles */
|
|
.navbar-logo {
|
|
max-height: 20px;
|
|
}
|
|
|
|
.flex-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
margin: -10px;
|
|
}
|
|
|
|
.flex-item {
|
|
flex: 1 1 30%;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.flex-item:last-child {
|
|
flex: 1 1 60%;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.flex-container {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-item:first-child {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-item:last-child {
|
|
order: 2;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.flex-item {
|
|
flex: 1 1 100%;
|
|
}
|
|
}
|
|
|