35 lines
786 B
CSS
35 lines
786 B
CSS
|
@media (prefers-color-scheme: dark) {
|
||
|
html { background-color: #111111; color: #fbfbfb; }
|
||
|
a { color: #ca8465; }
|
||
|
}
|
||
|
body {
|
||
|
line-height: 1.6;
|
||
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
|
||
|
text-align: center;
|
||
|
margin: 0;
|
||
|
min-height: 90vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
img.u-photo { border-radius: 50%; max-height:200px; }
|
||
|
ul { padding: 0; list-style: none; }
|
||
|
img.u-featured {
|
||
|
display:block;
|
||
|
z-index:0;
|
||
|
margin-bottom:-125px
|
||
|
}
|
||
|
|
||
|
button.icon-button {
|
||
|
line-height: 24px;
|
||
|
}
|
||
|
button.icon-button>img {
|
||
|
max-height: 24px;
|
||
|
vertical-align: bottom;
|
||
|
}
|
||
|
|
||
|
.button-input-container>label{
|
||
|
display:block;
|
||
|
}
|