2023-05-13 10:03:13 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
top: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-family: "Open Sans", "Noto Sans", sans-serif;
|
|
|
|
font-size: 1rem;
|
2023-05-14 09:31:04 +00:00
|
|
|
color: #e8e6e3;
|
|
|
|
background-color: #181a1b;
|
2023-05-13 10:03:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail-container {
|
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .navbar-list {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artwork-thumbnail {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
.artwork-thumbnail img {
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.artwork-thumbnail .artwork-rank-circle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 1rem;
|
|
|
|
height: 1rem;
|
|
|
|
top: 0.6rem;
|
|
|
|
left: 0.6rem;
|
|
|
|
border-radius: 50%;
|
|
|
|
padding: 1rem;
|
2023-05-14 09:31:04 +00:00
|
|
|
background-color: #262a2b;
|
2023-05-13 10:03:13 +00:00
|
|
|
}
|
|
|
|
.artwork-thumbnail .artwork-thumbnail-title {
|
|
|
|
margin: 0.4rem;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
.artwork-thumbnail .artwork-master-image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-position: center center;
|
|
|
|
}
|
|
|
|
.artwork-thumbnail .artwork-thumbnail-artist {
|
2023-05-14 09:31:04 +00:00
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
2023-05-13 10:03:13 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
.artwork-thumbnail .artwork-thumbnail-artist-avatar {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
object-position: center top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artwork-thumbnail-small {
|
|
|
|
width: 184px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artwork-thumbnail-large {
|
|
|
|
width: 288px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spotlight-thumbnail {
|
|
|
|
width: 400px;
|
|
|
|
height: 250px;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.spotlight-thumbnail .spotlight-master-image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: center center;
|
2023-05-13 14:33:40 +00:00
|
|
|
filter: brightness(75%);
|
2023-05-13 10:03:13 +00:00
|
|
|
}
|
|
|
|
.spotlight-thumbnail .spotlight-title-wrapper {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.spotlight-thumbnail .spotlight-title-wrapper .spotlight-title {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 28px;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-break: break-word;
|
|
|
|
hyphens: auto;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2023-05-14 12:30:03 +00:00
|
|
|
.artwork-page {
|
|
|
|
background: #333;
|
|
|
|
}
|
|
|
|
.artwork-page .artwork-content {
|
|
|
|
margin: 0 20px;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
.artwork-page .artwork-content a {
|
|
|
|
color: #3d7699;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.artwork-page .artwork-content a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
.artwork-page .artwork-artist-avatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
object-position: center top;
|
|
|
|
}
|
|
|
|
.artwork-page .artwork-images {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.artwork-page .artwork-images .artwork-image-page {
|
|
|
|
margin: 10px auto;
|
|
|
|
height: 578px;
|
|
|
|
width: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-05-13 10:03:13 +00:00
|
|
|
/*# sourceMappingURL=style.css.map */
|