57 lines
981 B
CSS
57 lines
981 B
CSS
html.barebones, body.barebones {
|
|
background-color: var(--background-color);
|
|
text-align: center;
|
|
}
|
|
|
|
h1.socialTitle {
|
|
padding-top: 0;
|
|
margin-top: 0;
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
img.profilePic {
|
|
max-width: 10em;
|
|
border-radius: 50%;
|
|
border: solid 5px var(--text-color);
|
|
}
|
|
|
|
p.page-block.nodropcap {
|
|
margin-top: 0;
|
|
}
|
|
|
|
ul.socialLinks {
|
|
padding-left: 0;
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.socialLinks li {
|
|
background-color: var(--nav-pill-background-color-inactive);
|
|
color: var(--nav-pill-text-color);
|
|
border-radius: var(--pill-radius);
|
|
padding: .5em;
|
|
margin-bottom: 1em;
|
|
list-style-type: none;
|
|
transition: all var(--transition-time);
|
|
width: 20em;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.socialLinks li:hover {
|
|
background-color: var(--contrast-color);
|
|
transform: scale(1.05, 1.05);
|
|
}
|
|
|
|
.socialLinks a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.socialLinks a img {
|
|
max-width: 1em;
|
|
margin-right: .5em;
|
|
}
|