mirror of
https://github.com/HugoAura/Seewo-HugoAura.git
synced 2026-06-20 23:14:28 +08:00
77 lines
1.4 KiB
CSS
Executable File
77 lines
1.4 KiB
CSS
Executable File
.aura-config-page-header-area {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
color: white;
|
|
z-index: 12000;
|
|
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.aura-config-page-header-area.color-reverse {
|
|
color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.aura-config-page-header-area.color-reverse
|
|
.aura-config-page-app-bar-hr-vertical {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.aura-config-page-header-area .iconfont {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.aura-config-page-header-area .iconfont:hover {
|
|
opacity: 0.75;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.aura-config-page-header-area .iconfont:active {
|
|
opacity: 0.375;
|
|
}
|
|
|
|
.aura-config-page-header-area p {
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.aura-config-page-header-area.header-collapsed {
|
|
transform: translateY(-1rem);
|
|
opacity: 0;
|
|
}
|
|
|
|
.aura-config-page-app-bar {
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.aura-config-page-app-bar-spacer {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.aura-config-page-app-bar-spacer.space-none {
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.aura-config-page-app-bar-hr-vertical {
|
|
position: relative;
|
|
margin-left: 8px;
|
|
width: 1px;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
height: 12px;
|
|
transition: background 0.5s;
|
|
}
|
|
|
|
.aura-config-page-app-bar-hr-vertical.hidden {
|
|
display: none;
|
|
}
|