hanyuu/assets/oauth2.css/device.css

43 lines
839 B
CSS

.oauth2-devicehead {
display: flex;
align-items: center;
}
.oauth2-devicehead-icon {
flex: 0 0 auto;
background-color: #fff;
mask: url('/images/mobile-screen-solid.svg') no-repeat center;
width: 40px;
height: 40px;
margin: 10px;
}
.oauth2-devicehead-text {
font-size: 1.8em;
line-height: 1.4em;
}
.oauth2-device-form {
display: flex;
justify-content: center;
margin: 10px;
}
.oauth2-device-code {
font-size: 1.4em;
border: 1px solid #222;
padding: 5px 10px;
background: #222;
color: #fff;
border-radius: 2px;
box-shadow: inset 0 0 4px #111;
transition: border-color .2s;
text-align: center;
font-family: var(--font-monospace);
min-width: 0;
max-width: 200px;
width: 100%;
}
.oauth2-device-code:focus {
border-color: #8559a5;
}