65 lines
905 B
CSS
65 lines
905 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
font-family: verdana, sans-serif;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: #555758;
|
|
}
|
|
|
|
li, p, #img-caption {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
#title {
|
|
text-align: center;
|
|
}
|
|
|
|
#img-div, #tribute-info, footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#img-div {
|
|
background-color:#445c7c;
|
|
margin: auto;
|
|
width: 100%;
|
|
padding-bottom: 18px;
|
|
}
|
|
|
|
#image {
|
|
display: block;
|
|
margin-top: 36px;
|
|
width: 75%;
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#img-caption {
|
|
padding-top: 12px;
|
|
}
|
|
|
|
#title, #img-caption, a, p, h2, li{
|
|
color: #c6ccca;
|
|
}
|
|
|
|
a:hover {
|
|
color: #9ea0a3;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
|
|
li {
|
|
padding-bottom: 12px;
|
|
} |