mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-08-08 22:27:44 +02:00
Controller customization feature
This commit is contained in:
71
src/assets/css/controller.styl
Normal file
71
src/assets/css/controller.styl
Normal file
@@ -0,0 +1,71 @@
|
||||
.bx-controller-customizations-container {
|
||||
.bx-btn-detect {
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
|
||||
&.bx-monospaced {
|
||||
background: none;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.bx-buttons-grid {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
column-gap: 20px;
|
||||
row-gap: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.bx-controller-key-row {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
|
||||
> label {
|
||||
margin-bottom: 0;
|
||||
font-family: var(--bx-promptfont-font);
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
min-width: 50px;
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
align-self: center;
|
||||
|
||||
&::after {
|
||||
content: '❯';
|
||||
margin: 0 12px;
|
||||
font-size: 16px;
|
||||
align-self: center;
|
||||
}
|
||||
}
|
||||
|
||||
.bx-select {
|
||||
width: 100% !important;
|
||||
|
||||
> div {
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
label {
|
||||
font-family: var(--bx-promptfont-font), var(--bx-normal-font);
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
margin-bottom: 6px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
> label {
|
||||
color: #ffe64b;
|
||||
|
||||
&::after {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user