generated from lucien/api-template
74 lines
No EOL
1.2 KiB
CSS
74 lines
No EOL
1.2 KiB
CSS
.forum-users {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.forum-user {
|
|
width: 97%;
|
|
border: 1px solid #270722;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: start;
|
|
gap: 5px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.forum-user-left {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: start;
|
|
padding: 5px;
|
|
gap: 15px;
|
|
}
|
|
|
|
.forum-user-pfp {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.forum-user-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: start;
|
|
align-items: start;
|
|
gap: 5px;
|
|
}
|
|
|
|
.forum-user-title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.forum-user-admin {
|
|
background-color: #ebb8e6;
|
|
padding: 2px 5px;
|
|
}
|
|
|
|
.forum-user-title h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.forum-user-left p {
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.forum-user {
|
|
border: 1px solid #a678af;
|
|
}
|
|
|
|
.forum-user-admin {
|
|
background-color: #a678af;
|
|
padding: 2px 5px;
|
|
}
|
|
} |