File size: 1,248 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
.page {
margin: 0 auto;
max-width: 1200px;
padding: 40px 16px 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
}
.back {
position: fixed;
left: 10px;
bottom: 10px;
z-index: 100;
padding: 10px;
background: #000;
color: #fff;
font-weight: 500;
font-size: 14px;
text-decoration: none;
border-radius: 2px;
border: 1px solid #333;
}
.linkList {
display: grid;
gap: 20px;
margin: 0;
padding: 0;
margin-bottom: 80px;
grid-template-columns: repeat(3, minmax(120px, 1fr));
width: 100%;
}
.linkList li {
list-style: none;
}
.linkList a {
text-decoration: none;
}
.card {
background-color: #f0f2f4;
margin: 0;
position: relative;
border-radius: 8px;
overflow: hidden;
}
.image-container {
overflow: hidden;
position: relative;
aspect-ratio: 16 / 9;
}
.image-container > * {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
max-width: 100%;
min-height: 100%;
max-height: 100%;
object-fit: cover;
}
.title {
font-size: -apple-system, system-ui, sans-serif;
padding: 20px;
font-size: 14px;
line-height: 18px;
font-weight: 400;
color: #1b1a22;
}
|