57 lines
979 B
Plaintext
57 lines
979 B
Plaintext
/* Layout Containers */
|
|
.screen-root {
|
|
flex-grow: 1;
|
|
background-color: rgba(20, 20, 20, 0.95);
|
|
padding: 40px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.panel {
|
|
background-color: rgba(45, 45, 45, 0.8);
|
|
border-width: 2px;
|
|
border-color: #4A4A4A;
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
min-width: 400px;
|
|
}
|
|
|
|
/* Typography */
|
|
.header-text {
|
|
font-size: 48px;
|
|
color: #E0E0E0;
|
|
-unity-font-style: bold;
|
|
margin-bottom: 30px;
|
|
-unity-text-align: middle-center;
|
|
}
|
|
|
|
/* Buttons */
|
|
.button-primary {
|
|
background-color: #3B5998;
|
|
color: white;
|
|
padding: 12px 24px;
|
|
margin: 8px;
|
|
border-radius: 5px;
|
|
font-size: 20px;
|
|
transition-duration: 0.2s;
|
|
}
|
|
|
|
.button-primary:hover {
|
|
background-color: #4C70BA;
|
|
scale: 1.05;
|
|
}
|
|
|
|
.button-primary:active {
|
|
background-color: #2D4373;
|
|
}
|
|
|
|
.button-danger {
|
|
background-color: #A93226;
|
|
}
|
|
|
|
/* Inputs */
|
|
.input-field {
|
|
margin-bottom: 15px;
|
|
color: white;
|
|
}
|