mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-15 00:24:45 +01:00
31 lines
445 B
CSS
31 lines
445 B
CSS
.ModHeader {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
background: rgba(77, 77, 77, 0.6);
|
|
}
|
|
|
|
.ModHeaderTitle {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.ModHeaderTitle:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ModHeaderTitle.selected {
|
|
border-bottom: 2px solid #fff;
|
|
}
|