Spaces:
Running
Running
File size: 1,023 Bytes
c7a9204 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
/* styles.css - Aesthetic & Interactive Styling for Audio Visualizer */
body {
font-family: 'Arial', sans-serif;
background-color: #121212;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background: #1e1e1e;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}
h1 {
font-size: 24px;
margin-bottom: 15px;
color: #00ffcc;
}
.start-button {
background: #00ffcc;
color: #121212;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
.start-button:hover {
background: #009977;
}
.error-message {
color: red;
margin-top: 10px;
}
.visualizer {
display: block;
width: 100%;
max-width: 600px;
height: 300px;
background: #000;
border-radius: 5px;
margin-top: 20px;
box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
} |