this repo has no description
at main 92 lines 1.5 kB view raw
1footer { 2 display: flex; 3 flex-wrap: wrap; 4 flex-direction: row; 5 justify-content: space-between; 6 7 width: 100%; 8 padding: 2em 0; 9 overflow-wrap: anywhere; 10 11 font-family: "TX-02", monospace; 12 font-size: 16px; 13 text-decoration: none; 14 15 color: var(--text-color); 16 17 h2 { 18 font-size: 24px; 19 margin: 5px 0; 20 21 a, 22 a:visited { 23 text-decoration: none; 24 color: var(--text-color); 25 } 26 } 27 28 .socials ul { 29 list-style: none; 30 padding: 0; 31 display: flex; 32 line-height: normal; 33 34 li { 35 padding-right: 15px; 36 font-size: 14px; 37 } 38 } 39 40 .info { 41 display: flex; 42 flex-direction: column; 43 justify-content: end; 44 45 .copyright, 46 .git { 47 font-size: 0.8rem; 48 } 49 50 .git { 51 color: var(--bg-p2); 52 } 53 } 54} 55 56.socials { 57 display: flex; 58 align-content: center; 59 align-items: center; 60 flex-wrap: wrap; 61 gap: 10px; 62 63 .icon { 64 width: 20px; 65 height: 20px; 66 67 color: var(--arc-palette-maxContrastColor, #000); 68 text-decoration: none; 69 } 70} 71 72.email { 73 display: block; 74 width: 28px !important; 75 height: 28px !important; 76} 77 78.sourcehut-logo { 79 display: block; 80} 81 82.github-logo { 83 padding: 3px; 84 85 background-color: white; 86 border-radius: 5px; 87 88 img { 89 width: 20px; 90 height: 20px; 91 } 92}