Skip to content

Commit

Permalink
fix: landing page, better mobile support
Browse files Browse the repository at this point in the history
  • Loading branch information
ABeltramo committed Jun 14, 2024
1 parent 7e1c7f7 commit a2b7c17
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 55 deletions.
Binary file added .DS_Store
Binary file not shown.
112 changes: 57 additions & 55 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

.gow-title {
font-family: 'Tiny Box CollageBitA12', sans-serif;
font-size: 3.5rem;
font-size: 3rem;
}

.gow-background {
Expand Down Expand Up @@ -101,7 +101,7 @@

<section class="section is-medium">
<p class="title has-text-centered">Features</p>
<div class="fixed-grid has-3-cols is-centered">
<div class="fixed-grid has-1-cols-mobile has-3-cols-desktop is-centered">
<div class="grid">
<div class="column is-flex is-vcentered is-align-content-center has-text-centered">
<div class="box gow-background has-text-white">
Expand Down Expand Up @@ -153,73 +153,75 @@
<section class="section is-medium gow-background">
<p class="title has-text-centered gow-text-color">Projects</p>
<div class="mt-6">
<div class="grid">
<div class="cell">
<div class="card">
<header class="card-header">
<p class="card-header-title">Wolf</p>
</header>
<div class="card-content">
<div class="content">
The main streaming server: create on-demand virtual desktops for multiple players!
<div class="fixed-grid has-1-cols-mobile has-4-cols-desktop">
<div class="grid">
<div class="cell">
<div class="card">
<header class="card-header">
<p class="card-header-title">Wolf</p>
</header>
<div class="card-content">
<div class="content">
The main streaming server: create on-demand virtual desktops for multiple players!
</div>
</div>
<footer class="card-footer">
<a href="https://games-on-whales.github.io/wolf/stable/"
class="card-footer-item">Docs</a>
<a href="https://github.com/games-on-whales/wolf" class="card-footer-item">Code</a>
</footer>
</div>
<footer class="card-footer">
<a href="https://games-on-whales.github.io/wolf/stable/"
class="card-footer-item">Docs</a>
<a href="https://github.com/games-on-whales/wolf" class="card-footer-item">Code</a>
</footer>
</div>
</div>

<div class="cell ">
<div class="card">
<header class="card-header">
<p class="card-header-title">inputtino</p>
</header>
<div class="card-content">
<div class="content">
A virtual input library, supports mouse, keyboard, joypad, trackpad and more!
<div class="cell ">
<div class="card">
<header class="card-header">
<p class="card-header-title">inputtino</p>
</header>
<div class="card-content">
<div class="content">
A virtual input library, supports mouse, keyboard, joypad, trackpad and more!
</div>
</div>
<footer class="card-footer">
<a href="https://github.com/games-on-whales/inputtino" class="card-footer-item">Code</a>
</footer>
</div>
<footer class="card-footer">
<a href="https://github.com/games-on-whales/inputtino" class="card-footer-item">Code</a>
</footer>
</div>
</div>

<div class="cell ">
<div class="card">
<header class="card-header">
<p class="card-header-title">gst-wayland-display</p>
</header>
<div class="card-content">
<div class="content">
A micro Wayland compositor that can be used as a Gstreamer plugin.
<div class="cell ">
<div class="card">
<header class="card-header">
<p class="card-header-title">gst-wayland-display</p>
</header>
<div class="card-content">
<div class="content">
A micro Wayland compositor that can be used as a Gstreamer plugin.
</div>
</div>
<footer class="card-footer">
<a href="https://github.com/games-on-whales/gst-wayland-display"
class="card-footer-item">Code</a>
</footer>
</div>
<footer class="card-footer">
<a href="https://github.com/games-on-whales/gst-wayland-display"
class="card-footer-item">Code</a>
</footer>
</div>
</div>

<div class="cell ">
<div class="card">
<header class="card-header">
<p class="card-header-title">GOW</p>
</header>
<div class="card-content">
<div class="content">
A collection of Dockerized games and apps like Steam, Firefox and Retroarch
<div class="cell ">
<div class="card">
<header class="card-header">
<p class="card-header-title">GOW</p>
</header>
<div class="card-content">
<div class="content">
A collection of Dockerized games and apps like Steam, Firefox and Retroarch
</div>
</div>
<footer class="card-footer">
<a href="https://games-on-whales.github.io/gow/index.html"
class="card-footer-item">Docs</a>
<a href="https://github.com/games-on-whales/gow" class="card-footer-item">Code</a>
</footer>
</div>
<footer class="card-footer">
<a href="https://games-on-whales.github.io/gow/index.html"
class="card-footer-item">Docs</a>
<a href="https://github.com/games-on-whales/gow" class="card-footer-item">Code</a>
</footer>
</div>
</div>
</div>
Expand Down

0 comments on commit a2b7c17

Please sign in to comment.