mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-12 15:14:35 +01:00
55 lines
751 B
CSS
55 lines
751 B
CSS
.TopBar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
height: 30px;
|
|
background-color: #141414;
|
|
z-index: 1;
|
|
color: #fff;
|
|
}
|
|
|
|
.TopBtns {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
#title {
|
|
margin: 0px 12px;
|
|
color: #c5c5c5;
|
|
}
|
|
|
|
#version {
|
|
margin: 0px 6px;
|
|
color: #434343;
|
|
}
|
|
|
|
#unassumingButton {
|
|
font-weight: bold;
|
|
margin: 0px 6px;
|
|
color: #141414;
|
|
|
|
transition: color 0.2s ease-in-out;
|
|
}
|
|
|
|
#unassumingButton:hover {
|
|
color: #434343;
|
|
}
|
|
|
|
#unassumingButton.spin {
|
|
color: #fff;
|
|
animation: spin 0.5s ease-in-out;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|