73 lines
822 B
CSS
73 lines
822 B
CSS
img#aaron {
|
|
width: 128px;
|
|
height: 128px;
|
|
}
|
|
|
|
body {
|
|
max-width: 780px;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
}
|
|
|
|
footer {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.img-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.img-grid a {
|
|
display: inline-block;
|
|
height: 160px;
|
|
margin-bottom: 10px;
|
|
width: 160px;
|
|
}
|
|
|
|
.img-grid img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 160px;
|
|
max-height: 160px;
|
|
}
|
|
|
|
.img-view {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.img-view img {
|
|
max-height: 100vh;
|
|
max-width: 100%;
|
|
}
|
|
|
|
div.nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
@media(min-width:600px) {
|
|
header {
|
|
text-align: left;
|
|
}
|
|
|
|
body {
|
|
margin: 0 auto;
|
|
}
|
|
}
|