php-gallery/css/nav.css

84 lines
1.3 KiB
CSS
Raw Normal View History

2022-07-22 00:21:48 +00:00
/*
-=-=-= NAV =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
nav {
margin: 0 0 2rem; padding: 0.5rem;
width: calc(100vh - 2rem)); height: 2.5rem;
2022-08-06 21:14:05 +00:00
position: sticky; z-index: 99;
top: 1rem;
2022-07-22 00:21:48 +00:00
align-items: center;
2022-07-27 18:47:19 +00:00
vertical-align: middle;
2022-07-22 00:21:48 +00:00
background-color: var(--bg); color: var(--fg);
2022-08-01 14:06:27 +00:00
backdrop-filter: blur(8px);
2022-07-22 00:21:48 +00:00
border: 0.2rem solid var(--green);
2022-08-08 18:59:40 +00:00
/*outline: 0.5rem solid var(--bg);*/
2022-07-22 00:21:48 +00:00
border-radius: var(--rad);
box-shadow: var(--shadow);
}
2022-07-23 07:44:43 +00:00
2022-08-03 16:46:50 +00:00
nav p {
2022-07-23 07:44:43 +00:00
margin: 0;
2022-07-27 18:47:19 +00:00
vertical-align: middle;
2022-07-23 07:44:43 +00:00
}
nav hr {
2022-07-24 09:43:54 +00:00
margin: 0.5rem 0.2rem; padding: 0;
2022-07-23 14:03:11 +00:00
opacity: 0;
}
2022-08-03 16:46:50 +00:00
.nav-name p, .nav-name {
2022-08-08 18:59:40 +00:00
font-family: "Lexend Deca", sans-serif;
font-size: 22px;
2022-07-23 14:03:11 +00:00
display: block;
}
.nav-links {
width: auto;
justify-content: space-between;
}
2022-07-25 15:13:26 +00:00
@media (max-width: 800px) {
2022-08-03 16:46:50 +00:00
.nav-name p, .nav-name hr, .nav-name {
2022-07-23 14:03:11 +00:00
display: none;
}
.nav-links {
width: 100%;
justify-content: space-around;
}
2022-07-23 07:44:43 +00:00
}
2022-07-26 11:33:28 +00:00
2022-07-31 12:04:30 +00:00
@media (max-width: 550px) {
nav {
margin: 0;
width: calc(100vw - 2rem));
position: fixed;
top: auto; bottom: 0; left: 0; right: 0;
border: none;
border-top: 3px solid var(--green);
backdrop-filter: blur(16px);
}
2022-07-26 11:33:28 +00:00
.nav-hide {
display: none;
}
.nav-links a .svg {
margin: 0;
}
footer {
margin-bottom: 3.5rem !important;
}
#back-to-top {
bottom: 4.5rem !important;
}
2022-07-26 11:33:28 +00:00
}