mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 21:24:05 +02:00
149 lines
No EOL
2.4 KiB
SCSS
149 lines
No EOL
2.4 KiB
SCSS
$primary: #2E2D2B;
|
|
$accent: #FEB453;
|
|
$divider: #ffffff0d;
|
|
|
|
$text: #E5DFD5;
|
|
$text2: #ADA9A1;
|
|
$mutedtext: #78756F;
|
|
|
|
.bg {
|
|
width: 750px;
|
|
height: 474px;
|
|
background-color: $primary;
|
|
border: 1px solid $divider;
|
|
border-radius: 12px;
|
|
z-index: -1;
|
|
position: fixed;
|
|
outline: none;
|
|
}
|
|
|
|
.back {
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 16px;
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
|
|
img{
|
|
background-color: $divider;
|
|
border-radius: 6px;
|
|
padding: 8px 6px;
|
|
}
|
|
|
|
p {
|
|
color: $text2;
|
|
}
|
|
}
|
|
|
|
.keybind-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
gap: 6px;
|
|
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.keybind-input {
|
|
padding: 6px;
|
|
border: 1px solid $divider;
|
|
color: $text2;
|
|
display: flex;
|
|
border-radius: 13px;
|
|
outline: none;
|
|
gap: 6px;
|
|
|
|
.key {
|
|
color: $text2;
|
|
font-family: SFRoundedMedium;
|
|
background-color: $divider;
|
|
padding: 6px 8px;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
|
|
.keybind-input:focus {
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
}
|
|
|
|
.bottom-bar {
|
|
height: 40px;
|
|
width: calc(100vw - 2px);
|
|
backdrop-filter: blur(18px);
|
|
background-color: hsla(40, 3%, 16%, 0.8);
|
|
position: fixed;
|
|
bottom: 1px;
|
|
left: 1px;
|
|
z-index: 100;
|
|
border-radius: 0 0 12px 12px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding-inline: 12px;
|
|
padding-right: 6px;
|
|
padding-top: 1px;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
border-top: 1px solid $divider;
|
|
|
|
p {
|
|
color: $text2;
|
|
}
|
|
|
|
.left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
.logo {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
}
|
|
|
|
.right {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.actions div {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
}
|
|
|
|
.divider {
|
|
width: 2px;
|
|
height: 12px;
|
|
background-color: $divider;
|
|
margin-left: 8px;
|
|
margin-right: 4px;
|
|
transition: all .2s;
|
|
}
|
|
|
|
.actions {
|
|
padding: 4px;
|
|
padding-left: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
border-radius: 7px;
|
|
background-color: transparent;
|
|
transition: all .2s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.actions:hover {
|
|
background-color: $divider;
|
|
}
|
|
|
|
&:hover .actions:hover~.divider {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
} |