mirror of
https://github.com/bendtherules/blog.git
synced 2026-08-18 13:41:55 +00:00
32 lines
423 B
CSS
32 lines
423 B
CSS
body {
|
|
min-height: 100vh;
|
|
background-color: #008000;
|
|
margin: 0;
|
|
}
|
|
.wrapper {
|
|
background-color: #00f;
|
|
}
|
|
.primary {
|
|
float: left;
|
|
width: 80%;
|
|
background-color: #ff0;
|
|
min-height: 100px;
|
|
}
|
|
.primary img {
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
.secondary {
|
|
float: right;
|
|
width: 20%;
|
|
background-color: #f00;
|
|
min-height: 200px;
|
|
}
|
|
.secondary img {
|
|
height: 500px;
|
|
width: 100px;
|
|
}
|
|
.clearfix {
|
|
clear: both;
|
|
}
|