mirror of
https://github.com/mouse-reeve/infinite_gnossienne
synced 2025-06-16 22:00:27 +02:00
114 lines
1.5 KiB
CSS
114 lines
1.5 KiB
CSS
body {
|
|
font-family: Oswald, sans-serif;
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-bottom: 3em;
|
|
}
|
|
|
|
#start[disabled="disabled"] {
|
|
background: #ddd;
|
|
cursor: default;
|
|
}
|
|
|
|
#start[disabled="disabled"]:hover {
|
|
background: #ddd;
|
|
}
|
|
|
|
#start-container {
|
|
position: absolute;
|
|
top: 17.5rem;
|
|
width: 100%;
|
|
}
|
|
|
|
#start {
|
|
display: block;
|
|
background: red;
|
|
margin: 0 auto;
|
|
height: 8rem;
|
|
width: 8rem;
|
|
padding: 0.7rem 1.75rem;
|
|
color: white;
|
|
font-size: 6em;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button.round {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
#start:hover {
|
|
background: #f33;
|
|
}
|
|
|
|
header {
|
|
margin-top: 3em;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-family: Oswald, sans-serif;
|
|
letter-spacing: 0.05em;
|
|
text-align: center;
|
|
font-size: 2.5em;
|
|
font-weight: normal;
|
|
}
|
|
h1 {
|
|
margin-bottom: 0;
|
|
}
|
|
h2 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
position: fixed;
|
|
width: 97.5%;
|
|
width: -webkit-fill-available;
|
|
bottom: 0;
|
|
background: white;
|
|
padding: 1em;
|
|
font-weight: lighter;
|
|
box-shadow: 0px 3px 10px 3px #eee;
|
|
}
|
|
|
|
#controls {
|
|
height: 0;
|
|
}
|
|
|
|
button.scroll-controls {
|
|
width: 8rem;
|
|
height: 2rem;
|
|
background: #ddd;
|
|
float: left;
|
|
}
|
|
|
|
button.scroll-controls:last-child {
|
|
float: right;
|
|
}
|
|
|
|
|
|
.play-controls {
|
|
display: inline;
|
|
}
|
|
|
|
.play-controls button {
|
|
background: #ddd;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
position: relative;
|
|
top: -2rem;
|
|
display: none;
|
|
}
|
|
|
|
#play {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
|
|
#credits {
|
|
margin-top: 0.5em;
|
|
}
|
|
|