2023-12-13 21:07:40 +00:00
|
|
|
#Dashboard {
|
|
|
|
align-items: center;
|
|
|
|
background-color: #f3f5f8;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
2023-12-14 21:18:36 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers {
|
|
|
|
background-color: #061726;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-list {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-list-follower {
|
|
|
|
border-bottom: 1px solid #82b1ff;
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
font-family: sans-serif;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-list-follower-username {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-list-follower-date {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-header {
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid #82b1ff;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-header-title {
|
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-header-highlights {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-header-highlight {
|
|
|
|
align-items: center;
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
background-color: #75a54b;
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
flex-direction: column;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
min-width: 50px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-header-highlight-count {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followers-header-highlight-description {
|
|
|
|
font-size: 12px;
|
2023-12-13 21:07:40 +00:00
|
|
|
}
|