1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 13:41:54 +02:00
blog/src/components/organisms/Header.module.css

61 lines
1.0 KiB
CSS
Raw Normal View History

2021-03-04 01:20:39 +01:00
@media (min-width: 40rem) and (min-height: 500px) {
.header {
position: fixed;
width: 100%;
z-index: 1;
top: 0;
border: 0;
will-change: transform;
}
}
.headerContent {
2021-03-07 02:48:05 +01:00
padding: 0 calc(var(--spacer) / 1.5);
max-width: var(--maxWidthContainer);
margin-left: auto;
margin-right: auto;
2021-03-04 01:20:39 +01:00
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
}
/* Logo
///////////////////////////////////// */
.title {
display: block;
2021-03-06 01:35:05 +01:00
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
2021-03-04 01:20:39 +01:00
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
width: 60px;
overflow: hidden;
}
@media (min-width: 40rem) {
2022-11-19 17:31:07 +01:00
.title {
2021-03-04 01:20:39 +01:00
width: 212px;
}
}
2022-11-19 17:31:07 +01:00
.title:hover svg,
.title:focus svg {
2021-03-04 01:20:39 +01:00
fill: var(--link-color);
}
.logo {
width: 191px;
height: 36px;
max-width: unset;
fill: var(--text-color-light);
margin: 0;
transition: 0.2s var(--easing);
}
.nav {
display: inline-block;
}