20 lines
260 B
SCSS
Raw Normal View History

2019-09-26 11:11:22 +09:00
.container {
2019-09-26 14:38:21 +09:00
height: 100%;
2019-09-18 15:02:21 +09:00
2019-09-26 14:38:21 +09:00
.left-side {
float: left;
width: 300px;
height: 100%;
}
.contents {
float: left;
width: calc(100% - 360px);
height: 100%;
}
.right-side {
float: left;
width: 60px;
height: 100%;
}
2019-09-18 15:02:21 +09:00
}