Heracles/static/site.css

23 lines
262 B
CSS
Raw Normal View History

2024-02-20 20:53:07 -05:00
body * {
padding-left: .3em;
padding-right: .3em;
}
.column-flex {
2024-02-20 20:53:07 -05:00
display: flex;
flex-direction: column;
}
.row-flex {
2024-02-20 20:53:07 -05:00
display: flex;
flex-direction: row;
}
.flex-item-grow {
2024-02-20 20:53:07 -05:00
flex: 1 0 auto;
}
.flex-item-shrink {
2024-02-20 20:53:07 -05:00
flex: 0 1 auto;
}