174 lines
2.6 KiB
CSS
174 lines
2.6 KiB
CSS
* {
|
|
font-family: 'Arial', 'Gill Sans', 'Gill Sans MT',
|
|
' Calibri', 'Trebuchet MS', 'sans-serif';
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.banner {
|
|
height: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.banner h1 {
|
|
float: top;
|
|
}
|
|
|
|
.banner audio {
|
|
width: 120px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.topbar {
|
|
display: block;
|
|
width: auto;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.topnav {
|
|
background-color: rgb(119, 196, 135);
|
|
display: block;
|
|
}
|
|
|
|
.topnav button {
|
|
background-color: transparent;
|
|
display: block;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
float:left;
|
|
}
|
|
|
|
.topnav button:hover {
|
|
background-color: #ddd;
|
|
color: black;
|
|
}
|
|
|
|
.topnav button.active {
|
|
background-color: #04AA6D;
|
|
color: white;
|
|
}
|
|
|
|
/* Hide the link that should open and close the topnav on small screens */
|
|
.topnav .icon {
|
|
display: none;
|
|
}
|
|
|
|
h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
iframe {
|
|
border: none;
|
|
height: 85%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: rgb(119, 196, 135);
|
|
}
|
|
|
|
table {
|
|
background-color: transparent;
|
|
margin: 0 auto;
|
|
font-size: large;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
width: 100%;
|
|
/* border: 1px solid black;*/
|
|
}
|
|
|
|
td {
|
|
background-color: rgb(219, 255, 235);
|
|
font-weight: lighter;
|
|
border: 2px solid black;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
font-weight: bold;
|
|
height: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
audio, video{
|
|
width: 100%;
|
|
}
|
|
|
|
.spectrogram {
|
|
width:33%
|
|
}
|
|
|
|
.centered {
|
|
display: block;
|
|
width: auto;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
button {
|
|
font-size: large;
|
|
background-color: transparent;
|
|
border: none;
|
|
color: black;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.logbutton, .navbuttons {
|
|
float: left;
|
|
}
|
|
|
|
.spectrogrambutton {
|
|
float:top;
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
display:none
|
|
}
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
.topnav button {display: none;}
|
|
/*.topnav button:not(:first-child) {display: none;}*/
|
|
.topnav button.icon {
|
|
display: block;
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
.topnav.responsive {position: relative;}
|
|
.topnav.responsive button {
|
|
float: left;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.top.nav button {
|
|
font-size: 16px;
|
|
}
|
|
.topnav button {display: none;}
|
|
/*.topnav button:not(:first-child) {display: none;}*/
|
|
.topnav button.icon {
|
|
display: block;
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.topnav button {
|
|
font-size: 16px;
|
|
}
|
|
.topnav.responsive {position: relative;}
|
|
.topnav.responsive button {
|
|
float: left;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
}
|