cl1p.net - The internet clipboard
Login/Sign Up
cl1p.net/xyz
cl1p.net/xyz
Login/Sign Up
This cl1p will be deleted in in 3 hours.
Copy
body { background-color:bisque; margin: 5px; } h2 { color:cadetblue; text-align: center; } .container { display: grid; grid-template-areas: "header header header" "leftside section rightside" "footer footer footer"; grid-template-columns: 1fr 3fr 1fr; gap: 10px; } #header { grid-area: header; background-color:darkslategray; color: white; display: flex; flex-direction: column; align-items: center; padding: 20px; position: sticky; top: 0; z-index: 10; } #header h1 { margin-bottom: 70px; } #hi { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; } #hi a { color: white; text-decoration: none; font-weight: bold; } .leftside { grid-area: leftside; background-color:azure; padding: 20px; border-radius: 10%; } .leftside ul { list-style-type: none; padding: 0; } .leftside ul li { margin: 10px 0; } .section { grid-area: section; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px; padding: 20px; } .pic { background-color: white; border: 1px solid black; padding: 10px; width: 220px; text-align: center; transition:background-color 0.5s ease; } .pic:hover{ background-color:lavender; } .rightside { grid-area: rightside; background-color:lavenderblush; padding: 20px; text-align: center; border-radius:6%; } .rightside div { height: 20px; width: 20px; background-color:aquamarine; animation-name: changeColor; animation-duration: 1s; animation-iteration-count: infinite; } @keyframes changeColor { 0% { background-color:blue; } } .footer { grid-area: footer; background-color:cadetblue; color:black; padding: 70px; text-align: center; } @media (max-width: 700px) { .container { grid-template-areas: "header" "leftside" "section" "footer"; grid-template-columns: 1fr; } .rightside { display: none; } #hi { flex-direction: column; gap: 10px; } .section { justify-content: center; } }