64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
.oauth2-userhead {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #0005;
|
|
}
|
|
|
|
.oauth2-userhead-main {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.oauth2-userhead-main-avatar {
|
|
flex: 0 0 auto;
|
|
margin: 10px;
|
|
}
|
|
.oauth2-userhead-main-avatar-image {
|
|
width: 60px;
|
|
height: 60px;
|
|
overflow: hidden;
|
|
border-radius: 4px;
|
|
}
|
|
.oauth2-userhead-main-avatar-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border: 0;
|
|
}
|
|
.oauth2-userhead-main-name {
|
|
font-size: 1.8em;
|
|
line-height: 1.4em;
|
|
}
|
|
.oauth2-userhead-main-name a {
|
|
color: inherit;
|
|
}
|
|
|
|
.oauth2-userhead-guise {
|
|
display: flex;
|
|
align-items: center;
|
|
background-image: repeating-linear-gradient(-45deg, #8559a57f, #8559a57f 10px, #1111117f 10px, #1111117f 20px);
|
|
}
|
|
.oauth2-userhead-guise-avatar {
|
|
flex: 0 0 auto;
|
|
margin: 10px;
|
|
}
|
|
.oauth2-userhead-guise-avatar-image {
|
|
width: 30px;
|
|
height: 30px;
|
|
overflow: hidden;
|
|
border-radius: 4px;
|
|
}
|
|
.oauth2-userhead-guise-avatar-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border: 0;
|
|
}
|
|
.oauth2-userhead-guise-text {
|
|
font-size: .8em;
|
|
line-height: 1.5em;
|
|
overflow: hidden;
|
|
padding: 2px 0;
|
|
}
|
|
.oauth2-userhead-guise-text p {
|
|
margin: 1px 0;
|
|
}
|