hexo-theme-keep/source/css/layout/_partial/header.styl

294 lines
5.1 KiB
Stylus
Raw Normal View History

@require "../common/variables.styl";
@require "../common/magic-theme.styl";
@require "../common/animated.styl";
2020-04-01 12:09:06 +08:00
$header-progress-height = 2.8px;
.header-wrapper {
width: 100%;
height: 100%;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
background: var(--background-color);
padding-top: $header-progress-height;
if (hexo-config('magic.enable') == true) {
2020-04-30 00:14:16 +08:00
magic-style(1.02, 1.02);
}
.header-content {
2020-09-03 16:47:52 +08:00
width: $main-content-width;
height: 100%;
transition();
+ils-tablet() {
width: $main-content-width-tablet !important;
2020-09-03 16:47:52 +08:00
}
+ils-mobile() {
width: $main-content-width-mobile !important;
2020-09-03 16:47:52 +08:00
}
2020-04-01 22:42:24 +08:00
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
position: relative;
2020-09-03 16:47:52 +08:00
2020-04-01 22:42:24 +08:00
z-index: $z-index-5;
.logo-title {
font-size: 2.2em;
font-weight: bold;
2020-06-04 22:11:27 +08:00
+ils-tablet() {
font-size: 2.0em;
}
+ils-mobile() {
font-size: 1.8em;
}
2020-04-01 22:42:24 +08:00
letter-spacing: 1px;
color: var(--first-text-color);
transition();
}
.menu-list {
2020-09-03 16:47:52 +08:00
+ils-tablet() {
display: none;
}
.menu-item {
float: left;
position: relative;
margin-left: 30px;
&:first-child {
margin-left: 0;
}
a {
&:hover {
color: var(--normal-text-color);
2020-04-01 22:42:24 +08:00
&::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
width: 100%;
height: 2px;
transform: translateX(-50%);
background: var(--primary-color);
transition();
}
}
}
.active {
color: var(--second-text-color);
2020-04-01 22:42:24 +08:00
font-weight: bold;
transition();
&::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
width: 100%;
height: 2px;
transform: translateX(-50%);
background: var(--primary-color)
transition();
}
}
}
}
.menu-bar {
display: none;
2020-04-01 22:42:24 +08:00
position: relative;
cursor: pointer;
2020-09-03 16:47:52 +08:00
+ils-tablet() {
display: block;
}
2020-04-01 22:42:24 +08:00
.menu-bar-middle {
width: 18px;
height: 2px;
margin: 6px 0;
position: relative;
background: var(--normal-text-color);
transition();
2020-04-01 22:42:24 +08:00
&::before {
content: '';
position: absolute;
top: -6px;
left: 0;
width: 100%;
height: 2px;
background: var(--normal-text-color);
transition();
2020-04-01 22:42:24 +08:00
}
&::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 100%;
height: 2px;
background: var(--normal-text-color);
transition();
2020-04-01 22:42:24 +08:00
}
}
}
}
.header-drawer {
width: 100%;
2020-04-01 12:09:06 +08:00
padding: $header-height 0 20px 0;
position: absolute;
top: 0;
left: 0;
transform: scaleY(0);
transform-origin: top;
background: var(--background-color);
transition();
2020-04-01 22:42:24 +08:00
z-index: $z-index-2;
.drawer-menu-list {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
.drawer-menu-item {
2020-04-01 22:42:24 +08:00
a {
display: block;
margin: 8px auto;
padding: 0 20px;
border-radius: 20px;
text-align: center;
line-height: 34px;
color: var(--normal-text-color);
transition();
2020-04-01 22:42:24 +08:00
&:hover {
color: var(--second-text-color);
2020-04-01 22:42:24 +08:00
font-weight: bold;
}
}
.active {
border: 1px solid var(--normal-text-color);
color: var(--second-text-color);
2020-04-01 22:42:24 +08:00
font-weight: bold;
}
}
2020-04-01 22:42:24 +08:00
}
}
.window-mask {
position: absolute;
top: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.4);
2020-04-01 22:42:24 +08:00
z-index: $z-index-1;
visibility: hidden;
opacity: 0;
transition();
}
}
.header-drawer-show {
2020-04-01 22:42:24 +08:00
.header-content {
.menu-bar {
.menu-bar-middle {
2020-04-01 22:42:24 +08:00
background: transparent;
&::before {
transform: translateY(6px) rotate(45deg);
}
2020-04-01 22:42:24 +08:00
&::after {
transform: translateY(-6px) rotate(-45deg);
}
}
}
}
2020-09-03 16:47:52 +08:00
.header-drawer {
transform: scaleY(1);
}
.window-mask {
visibility: visible;
opacity: 1;
}
}
.header-wrapper-shrink {
2020-04-28 23:20:17 +08:00
if (hexo-config('magic.enable') == false) {
box-shadow: 0 1px 2px var(--border-color);
}
.header-content {
2020-04-01 22:42:24 +08:00
.logo-title {
transform: scale(0.8);
transform-origin: left top;
2020-04-01 22:42:24 +08:00
}
.menu-list {
.menu-item {
a:hover {
&::after {
2020-04-01 22:42:24 +08:00
bottom: -20px;
}
}
.active::after {
2020-04-01 22:42:24 +08:00
bottom: -20px;
}
}
}
}
.header-drawer {
2020-04-01 12:09:06 +08:00
padding: $header-shrink-height 0 20px 0;
}
2020-07-09 18:25:20 +08:00
}