forked from server/soundboard
102 lines
1.3 KiB
CSS
102 lines
1.3 KiB
CSS
html, body {
|
|
margin: 0;
|
|
}
|
|
|
|
html {
|
|
font-family: Helvetica, "Open Sans", sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #333;
|
|
color: #eee;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
form {
|
|
padding: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
input {
|
|
background-color: #666;
|
|
border: 1px solid #999;
|
|
border-radius: 5px;
|
|
color: #eee;
|
|
margin: 0;
|
|
padding: 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
label {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
nav {
|
|
text-align: center;
|
|
margin: 1em;
|
|
}
|
|
|
|
nav a {
|
|
background-color: #eee;
|
|
border: 1px solid #000;
|
|
border-radius: 5px;
|
|
color: #333;
|
|
display: inline-block;
|
|
padding: 1em;
|
|
}
|
|
|
|
content {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
section {
|
|
position: absolute;
|
|
left: 0;
|
|
text-align: center;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
#reset {
|
|
font-size: 2em;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
#reset:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sound {
|
|
display: inline-block;
|
|
}
|
|
|
|
.sound a {
|
|
background-color: #ff4136;
|
|
border: 1px solid #000;
|
|
border-radius: 50px;
|
|
box-shadow: inset -5px -5px 5px rgba(0, 0, 0, 0.6);
|
|
color: #eee;
|
|
display: inline-block;
|
|
font-size: 0.6em;
|
|
height: 100px;
|
|
line-height: 100px;
|
|
margin: 10px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
|
|
width: 100px;
|
|
}
|
|
|
|
.sound a:hover {
|
|
background-color: #ff4136;
|
|
box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.6);
|
|
}
|