72 lines
1.5 KiB
CSS
72 lines
1.5 KiB
CSS
.oauth2-authorise-requesting {
|
|
font-size: .8em;
|
|
line-height: 1.4em;
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
.oauth2-authorise-requesting p {
|
|
margin: .5em 0;
|
|
}
|
|
|
|
.oauth2-authorise-device {
|
|
font-size: .8em;
|
|
line-height: 1.4em;
|
|
}
|
|
.oauth2-authorise-device p {
|
|
margin: .5em 0;
|
|
}
|
|
|
|
.oauth2-authorise-buttons {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.oauth2-authorise-button {
|
|
background-color: #191919;
|
|
font-family: var(--font-regular);
|
|
font-size: 1.2em;
|
|
line-height: 1.4em;
|
|
padding: 5px 10px;
|
|
min-width: 140px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: color .2s, background-color .2s, opacity .2s;
|
|
border: 1px solid;
|
|
border-radius: 2px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-decoration: none;
|
|
color: #8559a5;
|
|
border-color: #8559a5;
|
|
}
|
|
.oauth2-authorise-button:hover,
|
|
.oauth2-authorise-button:focus {
|
|
color: #191919;
|
|
background-color: #8559a5;
|
|
}
|
|
|
|
.oauth2-authorise-button[disabled] {
|
|
opacity: .5;
|
|
}
|
|
|
|
.oauth2-authorise-button-accept {
|
|
color: #080;
|
|
border-color: #0a0;
|
|
}
|
|
.oauth2-authorise-button-accept:hover,
|
|
.oauth2-authorise-button-accept:focus {
|
|
color: #191919;
|
|
background-color: #0a0;
|
|
}
|
|
|
|
.oauth2-authorise-button-deny {
|
|
color: #c00;
|
|
border-color: #a00;
|
|
}
|
|
.oauth2-authorise-button-deny:hover,
|
|
.oauth2-authorise-button-deny:focus {
|
|
color: #191919;
|
|
background-color: #a00;
|
|
}
|