hinamizawa/public/css/base.css

39 lines
480 B
CSS

/* layout */
header, #drives, #services, footer {
clear: both;
padding: 0.5em;
}
.drive {
float: left;
width: 20%;
}
h5 {
text-align: left;
margin: 0.5em 3em;
}
em {
float: right;
}
.service {
float: left;
width: 25%;
}
.logo {
width: 100%;
}
/* breakpoints at 850px and 475px */
@media screen and (max-width: 850px) {
.drive {
width: 50%;
}
}
@media screen and (max-width: 475px) {
.drive {
width: 100%;
}
.service {
width: 100%;
}
}