Spaces:
Running
Running
html, | |
body { | |
font-family: 'Roboto', sans-serif; | |
background-color: #1a1b1e; | |
color: white; | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
width: 100%; | |
overflow: hidden; | |
} | |
.banner { | |
width: 100%; | |
padding: 0 20px; | |
margin: 0; | |
border-bottom: 1px solid #333; | |
box-sizing: border-box; | |
cursor: pointer; | |
} | |
.banner h1 { | |
padding: 0; | |
margin: 20px 0 0 0; | |
cursor: pointer; | |
} | |
.banner p { | |
padding: 0; | |
margin: 4px 0 20px 0; | |
color: #aaa; | |
cursor: pointer; | |
} | |
.container { | |
padding: 10px 15px 80px 15px; | |
margin-left: auto; | |
margin-right: auto; | |
max-height: 100vh; | |
overflow-y: auto; | |
position: relative; | |
box-sizing: border-box; | |
@media (min-width: 576px) { | |
max-width: 540px; | |
} | |
@media (min-width: 768px) { | |
max-width: 720px; | |
} | |
@media (min-width: 992px) { | |
max-width: 960px; | |
} | |
@media (min-width: 1200px) { | |
max-width: 1140px; | |
} | |
} | |
.exit-button { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
position: absolute; | |
top: 10px; | |
right: 16px; | |
width: 36px; | |
height: 36px; | |
color: #aaa; | |
font-size: 24px; | |
cursor: pointer; | |
font-weight: bold; | |
transition: scale 0.2s ease; | |
} | |
.exit-button:hover { | |
scale: 1.1; | |
} | |
.header { | |
padding: 20px 0; | |
font-size: 24px; | |
font-weight: bold; | |
color: #aaa; | |
} | |
.viewer { | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
} | |
.grid { | |
display: flex; | |
flex-wrap: wrap; | |
gap: 10px; | |
width: 100%; | |
} | |
.grid-item { | |
background: #333; | |
position: relative; | |
border: 1px solid #000; | |
box-sizing: border-box; | |
overflow: hidden; | |
width: 100%; | |
@media (min-width: 576px) { | |
width: calc(33.333% - 10px); | |
} | |
@media (min-width: 768px) { | |
width: calc(25% - 10px); | |
} | |
@media (min-width: 992px) { | |
width: calc(20% - 10px); | |
} | |
@media (min-width: 1200px) { | |
width: calc(16.666% - 10px); | |
} | |
} | |
.grid-item::before { | |
content: ""; | |
display: block; | |
padding-top: 100%; | |
} | |
.grid-item:hover { | |
cursor: pointer; | |
} | |
.grid-item .title { | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
width: 100%; | |
background-color: rgba(0, 0, 0, 0.2); | |
color: #fff; | |
text-align: center; | |
padding: 10px; | |
box-sizing: border-box; | |
font-size: 14px; | |
height: 40px; | |
overflow: hidden; | |
transition: height 0.2s ease; | |
} | |
.grid-item:hover .title { | |
height: 48px; | |
} | |
.thumbnail { | |
position: absolute; | |
top: -10px; | |
; | |
left: 0; | |
width: 100%; | |
height: auto; | |
overflow: hidden; | |
scale: 1; | |
transition: scale 0.2s ease; | |
} | |
.grid-item:hover .thumbnail { | |
scale: 1.1; | |
} |