ccdp10003-project01/components/audio/audio.module.css

40 lines
562 B
CSS
Raw Normal View History

2023-04-18 01:38:15 +10:00
.all {
display: flex;
flex-direction: column;
align-items: center;
}
.button {
border: 1px;
border-radius: 10px;
border-color: rgb(60, 60, 60);
background-color: rgb(50, 50, 50);
color: white;
padding: 10px;
width: 50%;
}
.button:hover {
background-color: rgb(60, 60, 60);
}
.text {
color: white;
}
.text p {
display: inline;
padding: 10px 0;
}
.text a {
display: inline;
padding: 0 3px;
cursor: pointer;
text-decoration: underline;
}
.text a:hover {
color: rgb(110, 150, 240);
}