UNPKG

linkfree-themes

Version:

CSS themes for a free and open source alternative to LinkTree

90 lines (81 loc) 1.75 kB
/* Style Settings */ @import url("//fonts.googleapis.com/css?family=Roboto"); :root { --bgColor: #92a6f4; --accentColor: #f9e4ed; --complementColor: #ffffff; --font: "Lucida Handwriting", monospace; --hoverColor: #92a6f4; } body { background-color: var(--bgColor); text-align: center; } #userPhoto { width: 110px; height: 110px; display: block; margin: 35px auto 20px; border: 5px; border-radius: 50%; border-style: dotted; border-color: var(--accentColor); } p { display: inline-block; background-color: var(--accentColor); color: var(--bgColor); font-family: var(--font); text-align: center; margin-bottom: 10px; padding: 10px; text-decoration: none; font-size: 1rem; transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); border-color: var(--complementColor); border: 2px; border-style: dotted; border-radius: 10px; } #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-transform: uppercase; } #links { max-width: 500px; width: auto; display: block; margin: 27px auto; } .link { display: block; background-color: var(--accentColor); color: var(--bgColor); font-family: var(--font); text-align: center; margin-bottom: 20px; padding: 17px; text-decoration: none; font-size: 1rem; transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); border-color: var(--complementColor); border: 5px; border-style: dotted; border-radius: 30px; } .link:hover { background-color: var(--bgColor); color: var(--accentColor); } ion-icon { vertical-align: text-bottom; width: 1.1875em; height: 1.1875em; }