this repo has no description
at main 918 B view raw
1.page-main { 2 align-items: center; 3 flex-direction: column; 4 display: flex; 5 6 & .pfp { 7 width: clamp(200px, 20%, 20%); 8 } 9 10 & .credits { 11 font-size: xx-small; 12 } 13 14 & h2 { 15 margin-top: 10px; 16 margin-bottom: 10px; 17 } 18 19 & p { 20 margin-top: 0px; 21 margin-bottom: 0px; 22 } 23} 24 25.socials { 26 margin-top: 20px; 27 28 .socials-links { 29 display: flex; 30 } 31} 32 33.socials-logo { 34 width: 30px; 35 height: 30px; 36 margin: 2px; 37} 38 39.mastodon-logo { 40 fill: black; 41 42 &:hover { 43 fill: hsl(204deg, 71%, 50%); 44 } 45} 46 47.modrinth-logo { 48 fill: black; 49 50 &:hover { 51 fill: hsl(145deg, 78%, 48%); 52 } 53} 54 55.oomfs { 56 display: flex; 57 flex-direction: row; 58} 59 60.oomf { 61 padding: 10px; 62} 63 64.oomf-img { 65 transition: transform 0.3s ease; 66 margin: 2px; 67 max-width: 5rem; 68 69 &:hover { 70 transform: scale(1.1); 71 } 72}