webapp
Форк от omaltsev/webapp
158 строк · 2.5 Кб
1.navbar {2background: linear-gradient(90deg, rgb(28, 27, 27) 0%, rgb(26, 23, 23) 100%);3height: 80px;4display: flex;5justify-content: center;6align-items: center;7font-size: 1.2rem;8position: sticky;9top: 0;10z-index: 999;11}
12
13.navbar-container {14display: flex;15justify-content: center;16align-items: center;17height: 80px;18max-width: 1500px;19}
20
21.navbar-logo {22color: #fff;23justify-self: start;24margin-left: 20px;25cursor: pointer;26text-decoration: none;27font-size: 2rem;28display: flex;29align-items: center;30}
31
32.fa-typo3 {33margin-left: 0.5rem;34font-size: 1.8rem;35}
36
37.nav-menu {38display: grid;39grid-template-columns: repeat(4, auto);40grid-gap: 10px;41list-style: none;42text-align: center;43width: 60vw;44justify-content: end;45margin-right: 2rem;46}
47
48.nav-item {49height: 80px;50}
51
52.nav-links {53color: #fff;54display: flex;55align-items: center;56text-decoration: none;57padding: 0.5rem 1rem;58height: 100%;59}
60
61.nav-links:hover {62border-bottom: 4px solid #fff;63transition: all 0.2s ease-out;64}
65
66.fa-bars {67color: #fff;68}
69
70.nav-links-mobile {71display: none;72}
73
74.menu-icon {75display: none;76}
77
78@media screen and (max-width: 960px) {79.NavbarItems {80position: relative;81}82
83.nav-menu {84display: flex;85flex-direction: column;86width: 100%;87height: 90vh;88position: absolute;89top: 80px;90left: -100%;91opacity: 1;92transition: all 0.5s ease;93}94
95.nav-menu.active {96background: #242222;97left: 0;98opacity: 1;99transition: all 0.5s ease;100z-index: 1;101}102
103.nav-links {104text-align: center;105padding: 2rem;106width: 100%;107display: table;108}109
110.nav-links:hover {111background-color: #fff;112color: #242424;113border-radius: 0;114}115
116.navbar-logo {117position: absolute;118top: 0;119left: 0;120transform: translate(25%, 50%);121}122
123.menu-icon {124display: block;125position: absolute;126top: 0;127right: 0;128transform: translate(-100%, 60%);129font-size: 1.8rem;130cursor: pointer;131}132
133.fa-times {134color: #fff;135font-size: 2rem;136}137
138.nav-links-mobile {139display: block;140text-align: center;141margin: 2rem auto;142border-radius: 4px;143width: 80%;144text-decoration: none;145font-size: 1.5rem;146background-color: transparent;147color: #fff;148padding: 14px 20px;149border: 1px solid #fff;150transition: all 0.3s ease-out;151}152
153.nav-links-mobile:hover {154background: #fff;155color: #242424;156transition: 250ms;157}158}
159