Locaft-backend/src/navbar.css

73 lines
1.1 KiB
CSS
Raw Normal View History

2020-11-22 05:52:50 -08:00
@import url('https://fonts.googleapis.com/css?family=Montserrat|Ubuntu');
2020-11-21 09:27:17 -08:00
* {
box-sizing: border-box;
}
body {
2020-11-22 05:52:50 -08:00
background: #66bfbf;
2020-11-21 09:27:17 -08:00
}
2020-11-22 05:52:50 -08:00
header{
position: fixed;
top: 0;
left: 0;
2020-11-21 09:27:17 -08:00
width: 100%;
2020-11-22 05:52:50 -08:00
display: flex;
justify-content: space-between;
align-items: center;
transition: 0.6s;
padding: 20px 25px;
z-index: 100000;
font-family: Ubuntu;
2020-11-21 09:27:17 -08:00
}
2020-11-22 05:52:50 -08:00
header.sticky{
2020-11-21 09:27:17 -08:00
2020-11-22 05:52:50 -08:00
padding: 3px 50px;
background: #66bfbf;
opacity: 0.85;
}
header .logo{
font-family: "Ubuntu";
font-size: 2rem;
font-weight: bold;
position: relative;
2020-11-21 09:27:17 -08:00
color: #fff;
2020-11-22 05:52:50 -08:00
text-decoration: none;
text-transform: lowercase;
padding-left: 100px;
transition: 0.6s;
2020-11-21 09:27:17 -08:00
}
2020-11-22 05:52:50 -08:00
header ul {
position: relative;
display: flex;
justify-content: center;
align-items: center;
2020-11-21 09:27:17 -08:00
}
2020-11-22 05:52:50 -08:00
header ul li {
2020-11-21 09:27:17 -08:00
2020-11-22 05:52:50 -08:00
position: relative;
list-style: none;
2020-11-21 09:27:17 -08:00
}
2020-11-22 05:52:50 -08:00
header ul li a {
2020-11-21 09:27:17 -08:00
2020-11-22 05:52:50 -08:00
position: relative;
margin: 0 15px;
2020-11-21 09:27:17 -08:00
text-decoration: none;
2020-11-22 05:52:50 -08:00
color: #fff;
letter-spacing: 2px;
font-weight: 500px;
transition: 0.6s;
2020-11-21 09:27:17 -08:00
}
2020-11-22 05:52:50 -08:00
header.sticky ul li a{
color: #fff;
}