2025-01-25 23:53:54 +01:00
|
|
|
body {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
background-color: floralwhite;
|
|
|
|
margin: 0;
|
2025-02-01 11:24:48 +01:00
|
|
|
font-family: system-ui;
|
2025-02-07 04:58:47 +01:00
|
|
|
text-align: center;
|
2025-01-25 23:53:54 +01:00
|
|
|
}
|
|
|
|
h1 {
|
2025-01-26 23:30:13 +01:00
|
|
|
background-color: #f786867d;
|
2025-01-25 23:53:54 +01:00
|
|
|
margin: 0 0 0.2em 0;
|
2025-02-01 11:24:48 +01:00
|
|
|
box-shadow: 0px 0.2em 0.2em #f786867d;
|
|
|
|
text-shadow: 0 0 2px #00000080;
|
|
|
|
font-weight: 200;
|
2025-01-25 23:53:54 +01:00
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 0.2em;
|
|
|
|
}
|
|
|
|
hr {
|
|
|
|
margin: 0.2em;
|
|
|
|
}
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2025-02-01 11:30:26 +01:00
|
|
|
.error {
|
|
|
|
color: darkred;
|
|
|
|
}
|
2025-01-25 23:53:54 +01:00
|
|
|
.content {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.user-info {
|
|
|
|
padding: 0.5em;
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5em;
|
|
|
|
flex-direction: column;
|
|
|
|
width: fit-content;
|
|
|
|
align-items: center;
|
|
|
|
margin: 5px auto;
|
|
|
|
box-shadow: 0px 0px 10px lightgreen;
|
|
|
|
background-color: lightgreen;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
.user-info * {
|
|
|
|
flex: 2 1 auto;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.user-info .picture {
|
|
|
|
max-width: 3em;
|
|
|
|
max-height: 3em
|
|
|
|
}
|
|
|
|
.user-info a.logout {
|
|
|
|
border: 2px solid darkkhaki;
|
|
|
|
padding: 3px 6px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
.user-info a.logout:hover {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
|
|
|
.debug-auth {
|
|
|
|
font-size: 90%;
|
|
|
|
background-color: #d8bebc75;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
.debug-auth * {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.debug-auth p {
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
}
|
|
|
|
.debug-auth ul {
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.debug-auth p, .debug-auth .key {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.hasResponseStatus {
|
|
|
|
background-color: #88888840;
|
|
|
|
}
|
|
|
|
.hasResponseStatus.status-200 {
|
|
|
|
background-color: #00ff0040;
|
|
|
|
}
|
|
|
|
.hasResponseStatus.status-401 {
|
|
|
|
background-color: #ff000040;
|
|
|
|
}
|
|
|
|
.hasResponseStatus.status-403 {
|
|
|
|
background-color: #ff990040;
|
|
|
|
}
|
|
|
|
.hasResponseStatus.status-404 {
|
|
|
|
background-color: #ffCC0040;
|
|
|
|
}
|
|
|
|
.hasResponseStatus.status-503 {
|
|
|
|
background-color: #ffA88050;
|
|
|
|
}
|
2025-02-07 04:58:47 +01:00
|
|
|
|
2025-02-01 16:15:52 +01:00
|
|
|
.role, .scope {
|
2025-01-25 23:53:54 +01:00
|
|
|
padding: 3px 6px;
|
2025-02-01 16:15:52 +01:00
|
|
|
margin: 3px;
|
2025-02-07 04:58:47 +01:00
|
|
|
border-radius: 6px;
|
2025-02-01 16:15:52 +01:00
|
|
|
}
|
2025-02-07 04:58:47 +01:00
|
|
|
|
2025-02-01 16:15:52 +01:00
|
|
|
.role {
|
2025-01-25 23:53:54 +01:00
|
|
|
background-color: #44228840;
|
|
|
|
}
|
2025-02-07 04:58:47 +01:00
|
|
|
|
2025-02-01 16:15:52 +01:00
|
|
|
.scope {
|
|
|
|
background-color: #8888FF80;
|
|
|
|
}
|
|
|
|
|
2025-01-25 23:53:54 +01:00
|
|
|
|
|
|
|
/* For home */
|
|
|
|
|
|
|
|
.login-box {
|
|
|
|
background-color: antiquewhite;
|
|
|
|
margin: 0.5em auto;
|
|
|
|
width: fit-content;
|
|
|
|
box-shadow: 0 0 10px #49759b88;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
.login-box .description {
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #f7c7867d;
|
|
|
|
padding: 6px;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
|
}
|
|
|
|
.providers {
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0.8em;
|
|
|
|
}
|
|
|
|
.providers .provider {
|
|
|
|
min-height: 2em;
|
|
|
|
}
|
|
|
|
.providers .provider a.link {
|
|
|
|
text-decoration: none;
|
|
|
|
max-height: 2em;
|
|
|
|
}
|
|
|
|
.providers .provider .link div {
|
|
|
|
background-color: #f7c7867d;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 6px;
|
|
|
|
text-align: center;
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.providers .provider .hint {
|
|
|
|
font-size: 80%;
|
|
|
|
max-width: 13em;
|
|
|
|
}
|
|
|
|
.providers .error {
|
|
|
|
padding: 3px 6px;
|
|
|
|
font-weight: bold;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
.content .links-to-check {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 0.5em;
|
|
|
|
flex-flow: wrap;
|
|
|
|
}
|
2025-02-07 16:45:27 +01:00
|
|
|
.content .links-to-check button {
|
2025-01-25 23:53:54 +01:00
|
|
|
color: black;
|
|
|
|
padding: 5px 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 8px;
|
2025-02-07 16:45:27 +01:00
|
|
|
border: none;
|
2025-02-08 01:57:43 +01:00
|
|
|
cursor: pointer;
|
2025-01-25 23:53:54 +01:00
|
|
|
}
|
2025-02-21 13:45:18 +01:00
|
|
|
.content .links-to-check span {
|
|
|
|
margin: auto;
|
|
|
|
}
|
2025-01-25 23:53:54 +01:00
|
|
|
|
2025-01-26 03:52:08 +01:00
|
|
|
.token {
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
2025-01-25 23:53:54 +01:00
|
|
|
|
2025-01-28 19:50:17 +01:00
|
|
|
.resource {
|
|
|
|
padding: 0.5em;
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5em;
|
|
|
|
flex-direction: column;
|
|
|
|
width: fit-content;
|
|
|
|
align-items: center;
|
|
|
|
margin: 5px auto;
|
2025-02-01 11:24:48 +01:00
|
|
|
box-shadow: 0px 0px 10px #90c3eeA0;
|
|
|
|
background-color: #90c3eeA0;
|
2025-01-28 19:50:17 +01:00
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.resources {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.resource {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2025-02-01 11:24:48 +01:00
|
|
|
.token-info {
|
2025-01-31 03:12:36 +01:00
|
|
|
margin: 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key {
|
2025-01-28 19:50:17 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2025-01-31 03:12:36 +01:00
|
|
|
|
|
|
|
.token .key, .token .value {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.token .value {
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
2025-02-01 01:19:13 +01:00
|
|
|
|
|
|
|
.msg {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|