39 lines
577 B
CSS
39 lines
577 B
CSS
img{
|
|
display: block;
|
|
float:left;
|
|
margin-top: 10px;
|
|
margin-right: 50px;
|
|
margin-bottom: 40px;
|
|
max-width:600px;
|
|
max-height: 300px;
|
|
width: auto;
|
|
height: auto;
|
|
overflow: auto;
|
|
clear: left;
|
|
}
|
|
.article::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
.copyleft {
|
|
display:inline-block;
|
|
transform: rotate(180deg);
|
|
}
|
|
.nothing-to-read img{
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
.nothing-to-read{
|
|
width: 100%;
|
|
height: auto;
|
|
float: left;
|
|
top: 50%;
|
|
left: 50%;
|
|
vertical-align:middle;
|
|
}
|
|
.nothing-to-read h1{
|
|
padding-top: 130px;
|
|
}
|