Melora Hugues
ca59f1e25f
All checks were successful
continuous-integration/drone/push Build is passing
70 lines
No EOL
1 KiB
CSS
70 lines
No EOL
1 KiB
CSS
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
.main-container {
|
|
border-radius: 5px;
|
|
background-color: #121212;
|
|
padding: 20px;
|
|
}
|
|
|
|
.title-container {
|
|
border-radius: 5px 5px 0px 0px;
|
|
padding: 5px;
|
|
background-color: #1A3A5D;
|
|
}
|
|
|
|
.client-list-container {
|
|
border-radius: 0px 0px 5px 5px;
|
|
padding: 10px;
|
|
background-color: #232323;
|
|
}
|
|
|
|
.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: #9B9B9B;
|
|
}
|
|
}
|
|
|
|
.client-boot-options {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.client-boot-option {
|
|
margin: 3px auto;
|
|
padding: 8px 8px;
|
|
|
|
&.selected {
|
|
background-color: #3E4042;
|
|
}
|
|
}
|
|
|
|
.boot-option-name {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.boot-option-uuid {
|
|
font-size: smaller;
|
|
color: #9B9B9B;
|
|
}
|
|
|
|
.boot-option-path {
|
|
font-size: small;
|
|
padding-left: 10px;
|
|
} |