Last active
July 22, 2018 17:56
-
-
Save greyscaled/a661a49597a93ab1a13ff3c90f682b6e to your computer and use it in GitHub Desktop.
SVG Paper
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
<div class="svg-wrapper"> | |
<svg | |
class="svg-paper" | |
id="paper" | |
preserveAspectRatio="xMidYMid meet" | |
viewbox="0 0 400 400" | |
width="100%" | |
xmlns="http://www.w3.org/2000/svg" | |
xmlns:svg="http://www.w3.org/2000/svg"> | |
<g class="svg-paper__group"> | |
<!-- bg paper --> | |
<rect | |
class="svg-paper__sheet" | |
fill="#FFF" | |
height="100%" | |
width="100%" | |
x="0" | |
y="0"/> | |
<!-- lines --> | |
<g class="svg-paper__lines"> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="20%"/> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="30%"/> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="40%"/> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="50%"/> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="60%"/> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="70%"/> | |
<rect | |
class="svg-paper__line" | |
fill="#BBDEFB" | |
height="1%" | |
width="90%" | |
x="5%" | |
y="80%"/> | |
</g> | |
</g> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment