53 lines
1.1 KiB
CSS
53 lines
1.1 KiB
CSS
/* /Me */
|
|
|
|
.links-container {
|
|
grid-column: 1 / span 12;
|
|
.socialLinks {
|
|
max-width: calc(var(--space-3xl) * 3);
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
.socialLinks a button {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
height: var(--space-xl);
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin: 0 0 var(--space-s) 0;
|
|
& > svg {
|
|
fill: var(--background-color);
|
|
margin-right: var(--space-xs);
|
|
width: var(--space-s);
|
|
height: var(--space-s);
|
|
}
|
|
}
|
|
|
|
h1.socialTitle {
|
|
padding: 0;
|
|
margin-top: var(--space-m);;
|
|
|
|
color: var(--contrast-color);
|
|
font-family: var(--font-family-ui);
|
|
font-size: var(--step-0);
|
|
font-style: normal;
|
|
font-variation-settings: "wght" 450;
|
|
letter-spacing: var(--wide-letter-spacing);
|
|
line-height: calc(var(--step-0) * 0.25 + var(--step-0));
|
|
text-transform: uppercase;
|
|
text-wrap: pretty;
|
|
}
|
|
|
|
.links-container p {
|
|
font-size: var(--step-0);
|
|
line-height: calc(var(--step-0) * 0.5 + var(--step-0));
|
|
padding-top: var(--space-3xs);
|
|
}
|
|
|
|
img.profilePic {
|
|
max-width: var(--space-6xl);
|
|
border-radius: 50%;
|
|
border: solid 2px var(--contrast-color);
|
|
}
|