CoolFace
Apppublic

Saelrynn/portfolio_client

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
main.css36 linesDownload Raw Back to assets
1@import './base.css';2 3#app {4  max-width: 1280px;5  margin: 0 auto;6  padding: 2rem;7  font-weight: normal;8}9 10a,11.green {12  text-decoration: none;13  color: hsla(160, 100%, 37%, 1);14  transition: 0.4s;15  padding: 3px;16}17 18@media (hover: hover) {19  a:hover {20    background-color: hsla(160, 100%, 37%, 0.2);21  }22}23 24@media (min-width: 1024px) {25  body {26    display: flex;27    place-items: center;28  }29 30  #app {31    display: grid;32    grid-template-columns: 1fr 1fr;33    padding: 0 2rem;34  }35}36