mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-09-19 17:56:39 +08:00
56 lines
817 B
SCSS
56 lines
817 B
SCSS
.voice-page {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba($color: #000000, $alpha: 0.9);
|
|
color: white;
|
|
backdrop-filter: blur(10px);
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.top,
|
|
.bottom {
|
|
flex: 1;
|
|
padding: 20px;
|
|
font-size: 1.5em;
|
|
color: rgba($color: #fff, $alpha: 0.6);
|
|
overflow: auto;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.active {
|
|
background-color: rgba($color: #00ff00, $alpha: 0.2);
|
|
}
|
|
|
|
.top.active {
|
|
background-color: white;
|
|
|
|
&::after {
|
|
content: "☁️";
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
.top:hover {
|
|
background-color: black;
|
|
}
|
|
|
|
.top {
|
|
}
|
|
|
|
.center {
|
|
height: 2px;
|
|
background-color: white;
|
|
opacity: 0.2;
|
|
width: 100%;
|
|
}
|
|
|
|
.bottom {
|
|
}
|
|
}
|