OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

159 lines
2.9 KiB

9 years ago
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.dex-container {
color: #333;
margin: 60px auto;
max-width: 480px;
9 years ago
min-width: 320px;
padding: 0 16px;
9 years ago
text-align: center;
}
.dex-btn {
border-radius: 8px;
9 years ago
border: 0;
cursor: pointer;
font-size: 15px;
9 years ago
padding: 0;
transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
9 years ago
}
.dex-btn:focus-visible {
outline: 2px solid #4A90D9;
outline-offset: 2px;
9 years ago
}
.dex-btn:active {
transform: scale(0.98);
9 years ago
}
.dex-btn:disabled {
cursor: not-allowed;
opacity: 0.5;
}
9 years ago
.dex-btn-icon {
background-position: center;
background-repeat: no-repeat;
background-size: 20px;
border-radius: 8px 0 0 8px;
9 years ago
float: left;
height: 40px;
margin-right: 4px;
width: 40px;
9 years ago
}
.dex-btn-icon--google {
background-color: #FFFFFF;
background-image: url(../static/img/google-icon.svg);
9 years ago
}
9 years ago
.dex-btn-icon--local {
background-color: #84B6EF;
background-image: url(../static/img/email-icon.svg);
}
.dex-btn-icon--gitea {
background-color: #F5F5F5;
background-image: url(../static/img/gitea-icon.svg);
}
9 years ago
.dex-btn-icon--github {
background-color: #F5F5F5;
background-image: url(../static/img/github-icon.svg);
}
.dex-btn-icon--gitlab {
background-color: #F5F5F5;
background-image: url(../static/img/gitlab-icon.svg);
background-size: contain;
}
.dex-btn-icon--keystone {
background-color: #F5F5F5;
background-image: url(../static/img/keystone-icon.svg);
background-size: contain;
}
.dex-btn-icon--oidc {
background-color: #EBEBEE;
background-image: url(../static/img/oidc-icon.svg);
background-size: contain;
}
.dex-btn-icon--bitbucket-cloud {
9 years ago
background-color: #205081;
background-image: url(../static/img/bitbucket-icon.svg);
}
.dex-btn-icon--atlassian-crowd {
background-color: #CFDCEA;
background-image: url(../static/img/atlassian-crowd-icon.svg);
}
.dex-btn-icon--ldap {
background-color: #84B6EF;
background-image: url(../static/img/ldap-icon.svg);
}
.dex-btn-icon--saml {
background-color: #84B6EF;
background-image: url(../static/img/saml-icon.svg);
}
.dex-btn-icon--linkedin {
background-image: url(../static/img/linkedin-icon.svg);
background-size: contain;
}
.dex-btn-icon--microsoft {
background-image: url(../static/img/microsoft-icon.svg);
}
.dex-btn-icon--mockCallback,
.dex-btn-icon--mockPassword {
background-color: #6c5ce7;
background-image: url(../static/img/mock-icon.svg);
}
9 years ago
.dex-btn-text {
font-weight: 600;
line-height: 40px;
padding: 6px 14px;
9 years ago
text-align: center;
}
.dex-subtle-text {
color: #888;
font-size: 13px;
9 years ago
}
.dex-separator {
color: #aaa;
9 years ago
}
.dex-list {
color: #888;
9 years ago
display: inline-block;
font-size: 13px;
9 years ago
list-style: circle;
text-align: left;
}
.dex-error-box {
background-color: #e5383b;
border-radius: 6px;
9 years ago
color: #fff;
font-size: 14px;
font-weight: normal;
margin: 20px auto;
max-width: 320px;
padding: 8px 12px;
9 years ago
}