-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
195 lines (171 loc) · 3.83 KB
/
style.css
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* 基本的なページスタイル */
body {
margin: 0;
font-family: 'Roboto Mono', monospace;
background: #ffffff;
color: #000000;
overflow-x: hidden;
}
/* ページコンテナのレイアウト */
.page-container {
min-height: 100vh;
padding: 20px;
display: flex;
flex-direction: column;
align-items: flex-start; /* コンテンツを左寄せに配置 */
}
/* メインコンテナのスタイル */
.container {
max-width: 1200px;
width: 95%; /* 幅を調整して左寄せ */
}
/* タイトルのスタイル */
.title {
color: #000000;
font-size: 5rem;
font-weight: 700;
text-align: left;
margin: 10px 0 60px 0px;
letter-spacing: -0.02em;
text-transform: uppercase;
font-family: 'Quicksand', sans-serif;
line-height: 1;
}
/* 文字起こしテキストボックスのスタイル */
.transcript-box {
min-height: 200px;
padding: 20px;
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 60px;
white-space: pre-wrap;
border: none;
background: #fff;
}
/* 文字起こしの各行のスタイル */
.transcript-line {
margin-bottom: 8px;
}
/* 新しい文字起こし行のアニメーション */
.transcript-line.new {
animation: fadeIn 0.5s ease forwards;
opacity: 0;
transform: translateY(10px);
}
/* フェードインアニメーション */
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
/* ボタングループのスタイル */
.button-group {
display: flex;
gap: 24px;
margin-bottom: 48px;
padding-left: 50px;
position: relative;
}
/* フローティングアクションボタンのスタイル */
.fab-button {
width: 64px;
height: 64px;
border-radius: 50%;
border: none;
background: #000000;
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ボタンホバー時のエフェクト */
.fab-button:hover {
transform: scale(1.1);
}
/* 録音中のボタンスタイル */
.fab-button.recording {
background: #ff0000;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}
/* ヘルプパネルのスタイル */
.help-panel {
position: fixed;
top: 0;
right: -400px;
width: 400px;
height: 100vh;
background: #fafafa;
padding: 40px;
box-sizing: border-box;
transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
/* 表示中のヘルプパネル */
.help-panel.visible {
right: 0;
}
/* ヘルプパネルの見出し */
.help-panel h3 {
font-size: 1.4rem;
margin-bottom: 30px;
}
/* ヘルプパネルのリスト */
.help-panel ul {
padding-left: 20px;
}
/* ヘルプパネルのリストアイテム */
.help-panel li {
margin-bottom: 15px;
font-size: 1rem;
}
/* マテリアルアイコンのサイズ */
.material-icons {
font-size: 24px;
}
/* 作者情報のスタイル */
.author {
position: absolute;
bottom: 20px;
left: 40px;
font-size: 0.9rem;
color: #666;
}
.rotate-smile {
display: inline-block;
transition: transform 0.3s ease;
}
.rotate-smile:hover {
transform: rotate(90deg);
}
.flip-text {
display: inline-block;
position: relative;
cursor: pointer;
transform-style: preserve-3d;
transition: transform 0.6s;
}
.flip-text::after {
content: attr(data-emoji);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
backface-visibility: hidden;
transform: rotateX(180deg);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8em;
}
.flip-text span {
display: inline-block;
backface-visibility: hidden;
}
.flip-text.flipped {
transform: rotateX(180deg);
}