-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (101 loc) · 1.95 KB
/
style.css
File metadata and controls
112 lines (101 loc) · 1.95 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Apply some basic styles to the body */
body {
margin: 2em auto;
max-width: 800px;
font-family: Arial, sans-serif;
line-height: 1.5;
color: #333;
}
/* Style the textarea */
textarea {
display: block;
width: 100%;
height: 200px;
font-size: 12px;
line-height: 1.5;
padding: 10px;
margin: 1em 0em;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
/* Style the button */
button {
display: inline-block;
padding: 1em;
margin-top: 0.5em;
margin-right: 0.6em;
font-size: 16px;
font-weight: bold;
text-align: center;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover,button:active {
background-color: #0069d9;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
button:active.edits {
font-size: 17px;
border-radius: 4px;
}
/* Style the transcript container */
#transcript {
margin-top: 1em;
padding: 20px;
font-size: 15px;
font-family: 'Open Sans', sans-serif;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Style for audio element */
audio {
display: block;
width: 100%;
margin: 10px 0;
}
/* Style for option elements */
select {
display: inline;
margin: 10px 0;
font-size: 16px;
font-family: Arial, sans-serif;
color: #333;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
padding: 6px 10px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
cursor: pointer;
}
select option {
font-size: 16px;
font-family: Arial, sans-serif;
color: #333;
background-color: #fff;
padding: 6px 10px;
}
@media (prefers-color-scheme: dark) {
/* Re-assign previous variables */
body{
background-color: #333;
color: white;
}
textarea, #transcript{
background-color: #95a5a6;
color: #2c3e50;
}
}