Website/src/components/compatibilitysection.astro
2025-02-19 02:01:41 -05:00

71 lines
No EOL
1.7 KiB
Text

<section>
<div class="comp">
<h2>Compatibility</h2>
<p>
Ryujinx has been tested on approximately 4,300 titles<br>over 4,100 boot past menus and into gameplay<br> with roughly 3,550 of those being considered playable.
</p>
</div>
</section>
<style lang="scss">
section {
max-width: 100vw;
overflow-x: hidden;
max-width: min(90vw, 1600px);
margin: 0 auto;
padding: 10rem 0;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
@media (max-width: 768px) {
padding: 7rem 0;
max-width: 100%;
background-size: cover;
background-position: center;
}
.comp {
text-align: right;
display: flex;
flex-direction: column;
gap: 0.5rem;
flex: 1;
@media (max-width: 768px) {
max-width: min(90vw, 1600px);
margin: 0 auto;
}
p {
font-size: 1.5rem;
line-height: 1.2;
font-weight: 500;
color: #ffffff;
opacity: 0.8;
}
}
@media (max-width: 768px) {
flex-direction: column;
gap: 2rem;
.comp {
text-align: center;
h2 {
font-size: 3rem;
line-height: 1;
}
}
}
}
h2 {
font-size: 3rem;
font-weight: 750;
margin: 0;
line-height: 1;
color: #ffffff;
}
</style>