98 lines
No EOL
1.5 KiB
CSS
98 lines
No EOL
1.5 KiB
CSS
:root {
|
|
--base: #1e1e2e;
|
|
--text: #cdd6f4;
|
|
--subtext1: #bac2de;
|
|
--surface0: #313244;
|
|
--surface1: #45475a;
|
|
--red: #f38ba8;
|
|
--blue: #89b4fa;
|
|
}
|
|
|
|
|
|
body {
|
|
background-color: var(--base);
|
|
color: var(--text);
|
|
}
|
|
|
|
.page-content {
|
|
width: 90%;
|
|
max-width: 1200px;
|
|
margin: auto;
|
|
}
|
|
|
|
.container {
|
|
border-radius: 5px;
|
|
background-color: var(--surface0);
|
|
padding: 5px;
|
|
border-radius: 5px 5px;
|
|
margin: 5px auto;
|
|
}
|
|
|
|
.main-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.title-container {
|
|
background-color: var(--surface0);
|
|
}
|
|
|
|
.client-list-container {
|
|
border-radius: 0px 0px 5px 5px;
|
|
padding: 10px;
|
|
background-color: var(--surface0);
|
|
}
|
|
|
|
.client-container {
|
|
border-radius: 5px;
|
|
padding: 4px;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.client-header {
|
|
.client-name {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.client-uuid {
|
|
font-size: smaller;
|
|
color: var(--subtext1);
|
|
}
|
|
}
|
|
|
|
.client-boot-options {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.client-boot-option {
|
|
margin: 3px auto;
|
|
padding: 8px 8px;
|
|
cursor: pointer;
|
|
|
|
&.selected {
|
|
background-color: var(--surface-active);
|
|
cursor: default;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: var(--surface-hover);
|
|
--text-variant: #000000;
|
|
}
|
|
}
|
|
|
|
.boot-option-name {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.boot-option-uuid {
|
|
font-size: smaller;
|
|
color: var(--text-variant);
|
|
}
|
|
|
|
.boot-option-path {
|
|
font-size: small;
|
|
padding-left: 10px;
|
|
} |