portfolio/src/App.css

87 lines
1.2 KiB
CSS
Raw Normal View History

2022-07-27 16:36:16 +02:00
.container {
max-width: 1000px;
margin: 0 auto;
2022-07-27 19:26:06 +02:00
padding: 0 1em;
2022-07-27 16:36:16 +02:00
}
2022-07-27 18:34:46 +02:00
.nav .container {
height: 3em;
}
2022-07-27 16:36:16 +02:00
.nav {
2022-07-27 18:34:46 +02:00
background-color: rgb(47, 46, 58);
2022-07-27 16:36:16 +02:00
height: 3em;
2022-07-27 20:02:45 +02:00
box-shadow: inset 0px 3px 20px 10px rgba(0, 0, 0, 0.3);
2022-07-27 18:34:46 +02:00
}
.nav a {
text-decoration: none;
2022-07-27 19:26:06 +02:00
color: #e5e5ff;
2022-07-27 18:34:46 +02:00
transition: 0.3s;
}
.nav a:hover {
color: #fff;
2022-07-27 19:26:06 +02:00
text-shadow: 0 0 5px #f2ef00;
2022-07-27 16:36:16 +02:00
}
.nav-items {
display: flex;
justify-content: space-between;
height: 100%;
align-items: center;
}
.menu-items {
display: flex;
}
.menu-items div {
2022-07-27 19:26:06 +02:00
margin-left: 1em;
2022-07-27 16:36:16 +02:00
}
2022-07-27 18:34:46 +02:00
.logo {
font-size: 2em;
2022-07-27 19:26:06 +02:00
font-weight: bold;
2022-07-27 18:34:46 +02:00
}
.hamburger {
display: none;
}
2022-07-27 20:02:45 +02:00
.copyright {
font-size: 0.7em;
text-align: center;
}
2022-07-27 18:34:46 +02:00
.hamburger-menu {
2022-07-27 20:02:45 +02:00
background-color: rgba(47, 46, 58, 0.9);
2022-07-27 18:34:46 +02:00
z-index: 100;
position: absolute;
right: 0;
2022-07-27 19:26:06 +02:00
backdrop-filter: blur(3px) contrast(60%);
-webkit-backdrop-filter: blur(3px) contrast(60%);
2022-07-27 18:34:46 +02:00
top: 3em;
bottom: 0;
left: 0px;
display: flex;
flex-direction: column;
justify-content: center;
2022-07-27 19:26:06 +02:00
align-items: flex-end;
2022-07-27 18:34:46 +02:00
}
.hamburger-menu a {
font-size: 2em;
text-decoration: none;
2022-07-27 19:26:06 +02:00
margin-right: 1em;
2022-07-27 18:34:46 +02:00
}
@media screen and (max-width: 768px) {
.hamburger {
display: inline;
}
.menu-items {
display: none;
}
}