-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (96 loc) · 1.97 KB
/
style.css
File metadata and controls
112 lines (96 loc) · 1.97 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
:root {
--primary-color: #7a5cff;
--background-light: #18122b;
--background-dark: #0f0c24;
--text-color: #ffffff;
--accent-color: #ff6ec7;
}
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: var(--background-dark);
color: var(--text-color);
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
background: var(--background-light);
padding: 30px;
border-radius: 20px;
width: 90%;
max-width: 600px;
box-shadow: 0 0 30px rgba(122, 92, 255, 0.5);
}
header {
text-align: center;
margin-bottom: 20px;
}
h1 {
font-weight: 600;
}
.controls {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.control-row {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.control-row label {
font-weight: 500;
}
.control-row select,
.control-row button,
.control-row input[type="checkbox"] {
margin: 0;
flex: 1 1 auto;
min-width: 80px;
}
button, select, input[type="checkbox"] {
background: var(--primary-color);
border: none;
color: var(--text-color);
padding: 8px 15px;
margin: 5px 0;
border-radius: 10px;
cursor: pointer;
font-size: 1em;
}
button:hover, select:hover {
background: var(--accent-color);
}
.start-button {
width: 100%;
margin: 20px 0;
font-size: 1.2em;
}
.transcript {
background: #1f1b3a;
margin: 20px 0;
padding: 20px;
height: 200px;
overflow-y: auto;
border-radius: 10px;
font-size: 1.1em;
}
.save-button {
width: 100%;
background: transparent;
border: 1px solid var(--primary-color);
color: var(--primary-color);
font-weight: bold;
}
.save-button:hover {
background: var(--primary-color);
color: white;
}
.save-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}