49 lines
993 B
CSS
49 lines
993 B
CSS
/* Saikyo OS Server - Cockpit Branding
|
|
* Copyright (c) 2025-2026 OOO "SAIKO"
|
|
* https://saikyo-server.ru
|
|
*/
|
|
|
|
:root {
|
|
--ct-color-brand: #2e7d32;
|
|
--ct-color-brand-dark: #1b5e20;
|
|
--ct-color-brand-light: #4caf50;
|
|
}
|
|
|
|
.login-pf body {
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
|
}
|
|
|
|
.login-pf .brand {
|
|
background-image: url('logo.png');
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
height: 80px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.login-pf .login-pf-brand-text {
|
|
color: #4caf50;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.login-pf .login-pf-brand-text::before {
|
|
content: "Saikyo OS Server";
|
|
}
|
|
|
|
#brand {
|
|
background-image: url('logo.png');
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.server-system-content {
|
|
border-top: 3px solid var(--ct-color-brand);
|
|
}
|
|
|
|
.system-information::after {
|
|
content: " | Saikyo OS Server 1.0 LTS";
|
|
color: var(--ct-color-brand);
|
|
font-weight: 500;
|
|
}
|