mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-01 03:51:57 -05:00
26 lines
303 B
CSS
26 lines
303 B
CSS
|
.column {
|
||
|
float: left;
|
||
|
width: 50%;
|
||
|
}
|
||
|
|
||
|
/* Clear floats after the columns */
|
||
|
.row:after {
|
||
|
content: "";
|
||
|
display: table;
|
||
|
clear: both;
|
||
|
}
|
||
|
|
||
|
.left {
|
||
|
width: 35%;
|
||
|
}
|
||
|
|
||
|
.right {
|
||
|
width: 65%;
|
||
|
}
|
||
|
|
||
|
.centered-content {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|