UNPKG

linkfree-themes

Version:

CSS themes for a free and open source alternative to LinkTree

94 lines (83 loc) 1.74 kB
/* Style Settings */ @import url("//fonts.googleapis.com/css?family=Roboto+Slab&display=swap"); :root { --bgColor: #ffffe6; --accentColor: #c71212; --font: "Roboto Slab", serif; } body { display: flex; align-items: center; flex-direction: column; justify-content: center; min-height: 100vh; background-color: var(--bgColor); text-align: center; } a { text-decoration: none; } #userPhoto { width: 96px; height: 96px; border-radius: 50%; border: 5px solid var(--accentColor); } #userName { color: #333; font-size: 1.5rem; line-height: 1.25; font-family: var(--font); width: 100%; margin: 30px 0; text-align: center; font-style: italic; } #description { display: block; background-color: var(--accentColor); color: var(--bgColor); font-family: var(--font); text-align: center; margin-bottom: 25px; padding: 10px; text-decoration: none; text-transform: lowercase; font-size: 1rem; transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); border: solid var(--accentColor) 2px; border-radius: 10px; } #links { max-width: 675px; width: 100%; } .link { display: block; background-color: var(--accentColor); color: var(--bgColor); font-family: var(--font); text-align: center; margin-bottom: 30px; padding: 13px; text-decoration: none; text-transform: lowercase; font-size: 1rem; transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); border: solid var(--accentColor) 2px; border-radius: 50px; } .link:hover { background-color: var(--bgColor); color: var(--accentColor); font-style: italic; } .footer { color: #333; font-size: 1.3rem; } ion-icon { vertical-align: text-bottom; width: 1.1875em; height: 1.1875em; }