feature/entra id authentication added
This commit is contained in:
38
style.css
38
style.css
@@ -49,6 +49,44 @@ body {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* ==================== LOGIN SCREEN ==================== */
|
||||
.login-screen {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 32px;
|
||||
}
|
||||
|
||||
.login-btn {
|
||||
background: var(--ctp-surface0);
|
||||
border: 2px solid var(--ctp-surface1);
|
||||
color: var(--ctp-text);
|
||||
padding: 14px 24px;
|
||||
font-family: inherit;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition:
|
||||
border-color 0.15s ease,
|
||||
background 0.15s ease;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.login-btn:hover {
|
||||
border-color: var(--ctp-mauve);
|
||||
background: var(--ctp-surface1);
|
||||
}
|
||||
|
||||
.login-btn:active {
|
||||
background: var(--ctp-surface2);
|
||||
}
|
||||
|
||||
.login-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* ==================== WELCOME SCREEN ==================== */
|
||||
.welcome-screen {
|
||||
height: 100vh;
|
||||
|
||||
Reference in New Issue
Block a user