86 lines
1.3 KiB
CSS
86 lines
1.3 KiB
CSS
body {
|
|
margin: 0 auto;
|
|
max-width: 42em;
|
|
background: #3B3C36;
|
|
color: #E5E4E2;
|
|
font-family: sans-serif;
|
|
font-size: 1.4rem;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
background-color: #C8A2C8;
|
|
color: black;
|
|
text-align: center;
|
|
font-size: 1.2rem;
|
|
margin: 2px 2px 2px 2px;
|
|
border: none;
|
|
border-radius: 12px;
|
|
transition-duration: 0.4s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #8A5D8A;
|
|
}
|
|
|
|
button:active {
|
|
background-color: #8A5D8A;
|
|
transform: translateY(4px);
|
|
}
|
|
|
|
a:link{
|
|
color: #C8A2C8;
|
|
}
|
|
|
|
a:visited{
|
|
color: #c1d9f0;
|
|
}
|
|
|
|
a:hover{
|
|
color: #8A5D8A;
|
|
}
|
|
|
|
a:active{
|
|
color: #8A5D8A;
|
|
}
|
|
|
|
|
|
footer {
|
|
text-align: center;
|
|
font-size: 0.9em;
|
|
border-top: 2px solid white;
|
|
margin-top: 2rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
background-size: 30px;
|
|
}
|
|
|
|
.icon-play {
|
|
background-image: url(icons/play.svg);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.icon-pausa {
|
|
background-image: url(icons/pausa.svg);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.icon-silenci {
|
|
background-image: url(icons/silenci.svg);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.icon-so {
|
|
background-image: url(icons/so.svg);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.icon-cor {
|
|
background-image: url(icons/cor.svg);
|
|
background-repeat: no-repeat;
|
|
}
|