Untitled
unknown
css
2 years ago
3.0 kB
6
Indexable
*{ box-sizing: border-box; margin: 0; padding: 0; } body { margin: 0; padding: 0; font-family: 'Arial', sans-serif; display: flex; flex-direction: column; min-height: 100vh; background-color: #2323; font-family: "Poppins", sans-serif; --color1: #181818 ; --color2: #ffffff ; } .nav-bar { width: 100%; display: flex; justify-content: space-between; align-items: center; list-style: none; position: relative; background-color: var(--color2); padding-left: 20px; border-bottom: 30px solid #333333; } .logo img {height: 100px; margin-left: 5px;} .menu {display: flex;} .menu li {padding-left: 30px;} .menu li a { display: inline-block; text-decoration: none; color: var(--color1); text-align: center; transition: 0.15s ease-in-out; position: relative; text-transform: uppercase; margin-right: 25px;} .menu li a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--color1); transition: 0.15s ease-in-out; } .menu li a:hover:after {width: 100%;} .open-menu , .close-menu { position: absolute; color: var(--color1); cursor: pointer; font-size: 1.5rem; display: none; } .open-menu { top: 50%; right: 20px; transform: translateY(-50%); } .close-menu { top: 20px; right: 20px; } #check {display: none;} @media(max-width: 610px){ .menu { flex-direction: column; align-items: center; justify-content: center; width: 80%; height: 100vh; position: fixed; top: 0; right: -100%; z-index: 100; background-color: var(--color2); transition: all 0.2s ease-in-out; } .menu li {margin-top: 40px;} .menu li a {padding: 10px;} .open-menu , .close-menu {display: block;} #check:checked ~ .menu {right: 0;} } .image { background-image: url("./images/background.jpg"); background-size: cover; background-position: center; background-repeat: no-repeat; height: 100vh; } .centered { position: absolute; top: 60%; left: 50%; transform: translate(-50%, -50%); font-size: xx-large; color: #ffffff; font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif } .col{ background-image: url("./images/image.png"); width: 100%; position: absolute; top: 50%; transform: translateY(-50%); text-align: center; } .col h1{ font-size: 70px; margin-top: 80px; } .col p{ margin-inline: 50px; font-weight: 100; line-height: 25px; } .wrapper { flex: 1; /* Allow the wrapper to take up remaining vertical space */ } .footera { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .footer { background-color: #333; color: #fff; padding: 20px 0; text-align: center; } /* Make the footer responsive */ @media only screen and (max-width: 600px) { .footer { padding: 15px 0; } }
Editor is loading...
Leave a Comment