A Pen by Nick Matantsev on CodePen.
Created
November 17, 2018 20:28
-
-
Save unframework/e22ba389d6a81b401528dffd252f96c8 to your computer and use it in GitHub Desktop.
Logo sketch in SVG
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
svg viewBox="-186 -46 374 48" width='374' height='48' | |
defs | |
clipPath id="lines" | |
- for i in (0 .. 10) | |
rect x=-300 y=(-47 + i * 5) width=600 height=4 | |
text.main x=0 y=0 text-anchor='middle' font-family='Days One' font-size='64px' letter-spacing='-3.5px' | |
'<tspan clip-path='url(#lines)'>Beam</tspan>works |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@fgColor: #2980B9; | |
@bgColor: #ECF0F1; | |
body { | |
width: 374px; | |
padding: 20px 0 0; | |
margin: auto; | |
background: @bgColor; | |
} | |
svg { | |
.main { | |
fill: @fgColor; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://fonts.googleapis.com/css?family=Days+One" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment