http-boot-server/bootserver/static/stylesheets/main.css

98 lines
1.5 KiB
CSS
Raw Permalink Normal View History

:root {
2023-09-16 11:48:21 +00:00
--base: #1e1e2e;
--text: #cdd6f4;
--subtext1: #bac2de;
--surface0: #313244;
--surface1: #45475a;
--red: #f38ba8;
--blue: #89b4fa;
}
2023-08-16 21:33:26 +00:00
body {
2023-09-16 11:48:21 +00:00
background-color: var(--base);
color: var(--text);
2023-08-16 21:33:26 +00:00
}
.page-content {
width: 90%;
max-width: 1200px;
margin: auto;
}
.container {
2023-08-16 21:33:26 +00:00
border-radius: 5px;
2023-09-16 11:48:21 +00:00
background-color: var(--surface0);
padding: 5px;
border-radius: 5px 5px;
margin: 5px auto;
}
.main-container {
2023-08-16 21:33:26 +00:00
padding: 20px;
}
.title-container {
2023-09-16 11:48:21 +00:00
background-color: var(--surface0);
2023-08-16 21:33:26 +00:00
}
.client-list-container {
border-radius: 0px 0px 5px 5px;
padding: 10px;
2023-09-16 11:48:21 +00:00
background-color: var(--surface0);
2023-08-16 21:33:26 +00:00
}
.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;
2023-09-16 11:48:21 +00:00
color: var(--subtext1);
2023-08-16 21:33:26 +00:00
}
}
.client-boot-options {
padding-left: 10px;
padding-right: 10px;
}
.client-boot-option {
margin: 3px auto;
padding: 8px 8px;
cursor: pointer;
2023-08-16 21:33:26 +00:00
&.selected {
background-color: var(--surface-active);
cursor: default;
}
&:hover {
background-color: var(--surface-hover);
--text-variant: #000000;
2023-08-16 21:33:26 +00:00
}
}
.boot-option-name {
font-size: large;
font-weight: bold;
}
.boot-option-uuid {
font-size: smaller;
color: var(--text-variant);
2023-08-16 21:33:26 +00:00
}
.boot-option-path {
font-size: small;
padding-left: 10px;
}