-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (62 loc) · 1.67 KB
/
styles.css
File metadata and controls
74 lines (62 loc) · 1.67 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* Base styles */
body {
font-family: Arial, sans-serif;
background-color: #FFF;
color: #880000;
padding: 20px;
}
button {
background-color: #880000; /* UMass Maroon Red */
color: #FFFFFF; /* White */
border: none;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #a30000; /* A slightly lighter maroon for hover effect */
}
button:disabled {
background-color: #cccccc; /* Grey out the button when disabled */
cursor: not-allowed;
}
#imageContainer, #mfccImageContainer {
display: block;
max-width: 100%;
height: auto;
margin-top: 20px;
border: 3px solid #880000; /* Maroon border for images */
padding: 5px;
}
/* Specific adjustments for the 'Classify My Tone' and 'Check Server Response' buttons */
#classifyToneButton, #sendAudioButton {
background-color: #ffffff; /* White background for a specific contrast */
color: #880000; /* Maroon text */
border: 2px solid #880000; /* Maroon border */
}
#classifyToneButton:hover, #sendAudioButton:hover {
background-color: #f2f2f2; /* Light grey for hover */
}
/* Ensuring accessibility */
button:focus {
outline: none;
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #880000;
}
body, button, input, textarea {
font-family: 'Times New Roman', Times, serif;
}
header {
background-color: #880000; /* UMass Maroon */
color: #FFFFFF; /* White */
padding: 20px 0;
text-align: center;
font-family: 'Times New Roman', Times, serif;
}
h1 {
margin: 0;
font-weight: bold; /* Bold for headings */
font-size: 2em;
}