UNPKG

linkfree-themes

Version:

CSS themes for a free and open source alternative to LinkTree

95 lines (85 loc) 2 kB
/* Style Settings */ @import url("//fonts.googleapis.com/css?family=Alice&display=swap"); :root { --bgColor: #130912; --accentColor: #3d1c33; --detailColor: #deb314; --fontColor: #bbb; --font: "Alice", serif; } body { background-color: #2401206e; background-image: url("images/background.jpg"); background-position: center center; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; text-align: center; } a { text-decoration: none; } #userPhoto { width: 110px; height: 110px; display: block; margin: 35px auto 20px; border-radius: 50%; border: solid var(--fontColor) 4px; box-shadow: 0 0 3px var(--accentColor), 2px 2px 5px var(--bgColor); } #userName { color: var(--accentColor); font-size: 1rem; font-weight: 600; line-height: 1.25; display: block; font-family: var(--font); width: 100%; text-align: center; text-shadow: -2px -2px 7px var(--bgColor); } #links { max-width: 675px; width: auto; display: block; margin: 27px auto; } .link { display: block; background-color: var(--accentColor); color: var(--fontColor); font-family: var(--font); text-align: center; margin-bottom: 20px; padding: 17px; text-decoration: none; text-shadow: var(--detailColor) 2px 2px 8px; font-size: 1rem; transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); border: solid var(--fontColor) 2px; } .link:hover { background-color: var(--bgColor); color: var(--fontColor); text-shadow: var(--fontColor) 2px 2px 8px; } p { display: inline-block; background-color: var(--accentColor); color: var(--fontColor); font-family: var(--font); text-align: center; margin-bottom: 10px; padding: 8px; text-decoration: none; text-shadow: var(--detailColor) 2px 2px 8px; font-size: 1.3rem; transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); border: solid var(--fontColor) 2px; } ion-icon { vertical-align: text-bottom; width: 1.1875em; height: 1.1875em; }