allow website to get wider, and change some things with how floats are handled

This commit is contained in:
Andrew Cassidy 2017-12-28 16:33:54 -08:00
parent b80ca7c273
commit 4b838a5fcb
Failed to extract signature
3 changed files with 18 additions and 4 deletions

View File

@ -0,0 +1 @@
<div style="clear:both;"></div>

View File

@ -22,10 +22,9 @@ Since this drive is so old and replacement parts are so hard to come by, I wante
{% include figure-gallery.html
src="inside-1-small.jpg"
src="inside-1.jpg"
alt="inside the drive" %}
After removing four screws on the outer case (two on the side and two on the back. Be careful: the ones on the side are JIS, not Phillips! I almost stripped one of them) the cover slides up and off the unit.
{% include figure-image.html
@ -43,6 +42,8 @@ A rubber belt along the side operates the rubber rollers mentioned before. I ima
The front cover assembly which also helps pull the disk in the rest of the way can be removed by unhooking the two springs on either side, and then lifting it up and out. The spindle assembly can be removed the same way.
{% include float-clear.html %}
To fix the roller carrier, you first have to remove it by undoing its two springs. these hook onto stationary posts in the case, then loop under the roller carrier. The plastic bracket on the side can be unclipped to remove the whole axle.
{% include figure-gallery.html

View File

@ -70,7 +70,7 @@ body {
font-family: $body-font;
color: $body-text;
max-width: 800px;
max-width: 1000px;
z-index: 0;
margin-left: auto;
margin-right: auto;
@ -161,6 +161,7 @@ small {
}
.figure-gallery {
clear: both;
.gallery-grid {
margin-left: -60px;
@ -212,17 +213,28 @@ small {
width: 100%;
height: auto;
}
}
.figure-float {
width: 50%;
width: 33%;
margin: 10px;
clear: both;
img {
width: 100%;
height: auto;
}
}
@media screen and (max-width: 500px) {
.figure-float {
width: 50%;
}
}
figcaption {
text-align: center;