2025-03-19 22:44:11 +01:00

48 lines
871 B
CSS

#Settings {
height: 100%;
display: flex;
align-items: center;
}
#Settings > * {
height: 80%;
}
#Settings > div > img {
height: calc(100% - 10px);
margin: 5px;
filter: invert(100%) sepia(20%) saturate(7480%) hue-rotate(179deg) brightness(121%) contrast(102%);
}
#SettingsPopUpBody {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
#SettingsPopUpBody > * {
margin: 5px auto;
border: 1px solid var(--primary-color);
padding: 5px;
width: calc(100% - 10px);
border-radius: 5px;
}
#SettingsPopUpBody label {
width: max-content;
margin-right: 5px;
}
#SettingsPopUpBody label::after {
content: ':';
}
#SettingsPopUpBody button {
padding: 0 15px;
}
#SettingsPopUpBody h1, #SettingsPopUpBody h2, #SettingsPopUpBody h3 {
border: 0;
margin: 5px 0 0 0;
padding: 0;
}