_footer.scss (2053B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | @import "variables"; .footer { flex-direction: column; flex-grow: 0; opacity: 0.5; padding: 20px 0 10px 0; &__inner { align-items: center; display: flex; justify-content: center; margin-top: 20px; width: 100%; } .copyright { align-items: center; color: var(--accent-alpha-70); display: flex; flex-direction: column; font-size: 1rem; text-align: center; } .socials-bar { display: flex; flex-direction: row; justify-content: center; margin: 5px; a { background: unset; } img { filter: var(--image-filter); margin: 5px; -webkit-filter: var(--image-filter); transition: all 0.2s ease; &:hover { transform: scale(1.1); } } } .theme { &-container { display: flex; justify-content: center; } &_before { transition: flex 0.5s; flex-grow: 0; @media (max-width: $tablet-max-width) { flex-grow: 1; } } &-content { display: flex; align-items: center; } &_after { flex-grow: 1; } } #theme-select { background-color: var(--background); border: 2px solid var(--accent-secondary-alpha-70); color: var(--color); cursor: pointer; font-size: 0.95rem; text-align: center; margin: 5px; transition: background-color 0.2s ease-in; &:hover { background-color: var(--accent-alpha-20); } &:active { background-color: var(--accent-alpha-70); } } .webring { font-size: 0.8rem; text-align: center; margin: 5px; a { text-decoration: none; } } } a.backlink { margin-left: 10px; font-size: 1.3rem; } .footnote { &-definition { color: var(--accent); margin-right: 10px; p { display: inline; color: rgba(255, 255, 255, 0.7); &:first-of-type { margin-inline-start: 1ch; } } &-label { font-style: italic; font-weight: bold; margin-left: 3px; } } } |