Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,27 @@
}

#app {
width: 80%;
max-width: 80%;
}

#logo {
max-width: 80%;
margin-bottom: 2rem;
}

@media (max-width: 600px) {
#app {
max-width: 90%;
}

#github-fork {
max-width: 6.5rem;
}

.tour {
max-width: 18rem;
}
}

.tour {
position:absolute;
Expand All @@ -39,7 +57,6 @@
}

.tour.showing {

opacity: 1;
}

Expand All @@ -53,13 +70,18 @@
height: 2rem;
}

#tourSoundButton img{
transform: rotate(15deg);
}

#tourShufflerButtons img, #tourSorterMethods img {
transform: rotate(180deg);
}

#tourShufflerButtons div {
width: 20rem;
}

</style>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<meta property="og:title" content="funsorting!">
Expand All @@ -68,9 +90,9 @@
<meta property="og:url" content="http://funsorting.github.io">
</head>
<body>
<a href="https://github.com/funsorting/funsorting.github.io"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<a href="https://github.com/funsorting/funsorting.github.io"><img id="github-fork" style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<center>
<img src="src/assets/logo.png" />
<img src="src/assets/logo.png" id="logo"/>

<div id="app" class="app"></div>

Expand Down