24 lines
524 B
CSS
24 lines
524 B
CSS
.admin-panel-page-title {
|
|
font-size: 28px;
|
|
text-align: center;
|
|
font-family: Source Sans Pro;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1rem;
|
|
}
|
|
.admin-dropdown {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-width: 150px;
|
|
width: 100%;
|
|
min-height: 50px;
|
|
|
|
padding: 5px 10px;
|
|
border: 1px solid rgba(0, 0, 0, 0.0);
|
|
background-color: rgba(0, 0, 0, 0.04);
|
|
border-radius: 5px;
|
|
font-family: Source Sans Pro;
|
|
font-size: 16px;
|
|
}
|