photoprismupload/vote.css

53 lines
870 B
CSS
Raw Permalink Normal View History

2022-05-05 15:12:01 +00:00
:root {
--main-bg-color: white;
--main-text-color: #333333;
}
@media (prefers-color-scheme: dark) {
:root {
--main-bg-color: #333333;
--main-text-color: white;
}
}
body {
background-color: var(--main-bg-color);
color: var(--main-text-color);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Oxygen-Sans, Ubuntu,
Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
}
button {
padding: 4px;
}
img {
display: block;
}
.photowrapper {
margin: 8px;
display: inline-block;
}
.votewrapper {
margin: auto;
display: flex;
justify-content: center;
}
a.disabled, a.disabled:visited {
pointer-events: none;
color: rgb(163, 163, 163);
cursor: not-allowed;
}
.pageLink {
color: orange;
}
.pageLink:visited {
color: rgb(195, 0, 255);
}