web-tuner/www/tuner.css

134 lines
2.4 KiB
CSS

body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #000000;
}
.container {
background-color: #ffffff0c;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
color: #dfdfdf;
}
h1 {
margin-bottom: 20px;
}
.tuning-controls {
display: flex;
gap: 20px;
margin-bottom: 20px;
justify-content: center;
}
.tuning-controls > div {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.tuning-controls label {
margin-bottom: 5px;
}
.tuning-controls input, .tuning-controls select {
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
.strings {
display: flex;
gap: 10px;
margin: 1rem;
justify-content: center;
}
.string-button {
padding: 15px 25px;
margin: .5rem;
font-size: 1.2em;
border: none;
border-radius: 5px;
background-color: #00000000; /* Green */
color: #dfdfdf;
cursor: pointer;
transition: background-color 0.3s;
}
.string-button:hover {
background-color: #45a049;
}
#play-all {
padding: 12px 20px;
font-size: 1em;
border: none;
border-radius: 5px;
background-color: #008CBA; /* Blue */
color: #dfdfdf;
cursor: pointer;
transition: background-color 0.3s;
}
#play-all:hover {
background-color: #0077B3;
}
#output {
margin-top: 20px;
font-weight: bold;
}
.instrument-select {
margin: 1rem;
}
label[for=instrument] {
color: #dfdfdf;
font-weight: 600;
}
#instrument {
padding: .5rem;
padding-right: 1rem;
padding-left: 1rem;
font-size: 12pt;
font-weight: bold;
border: 2px solid rgb(67, 66, 66);
color: #dfdfdf;
border-radius: 5px;
}
.tuning-controls {
padding: .5rem;
padding-right: 1rem;
padding-left: 1rem;
font-size: 12pt;
font-weight: bold;
color: #dfdfdf;
}
.a440-control, .transpose-control, .tuning-mode-select, .tuning-select{
padding: .5rem;
padding-right: 1rem;
padding-left: 1rem;
font-size: 12pt;
font-weight: bold;
border: 2px solid rgb(67, 66, 66);
background-color: black;
color: #dfdfdf;
border-radius: 5px;
}
#tuning, #tuning-mode, #transpose, #a440, #instrument {
background-color: black;
color: #dfdfdf;
}