diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/css/style.css | 4 | ||||
| -rw-r--r-- | static/img/darkgrid.svg | 4 | ||||
| -rw-r--r-- | static/img/lightgrid.svg | 4 |
3 files changed, 10 insertions, 2 deletions
diff --git a/static/css/style.css b/static/css/style.css index 7eeb4e0..7c9a0ca 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -279,7 +279,7 @@ main { } #skills { - background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect x="0" y="0" width="1" height="1" fill="black"/><rect x="2" y="2" width="1" height="1" fill="black"/></svg>'); + background-image: url('/img/darkgrid.svg'); padding: calc(2 * var(--base-grid)); width: 100%; display: flex; @@ -302,7 +302,7 @@ main { } #testimonials { - background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6"><rect x="0" y="0" width="1" height="1" fill="black"/><rect x="3" y="3" width="1" height="1" fill="black"/></svg>'); + background-image: url('/img/lightgrid.svg'); padding: calc(2 * var(--base-grid)); width: 100%; display: flex; diff --git a/static/img/darkgrid.svg b/static/img/darkgrid.svg new file mode 100644 index 0000000..58c586f --- /dev/null +++ b/static/img/darkgrid.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"> + <rect x="0" y="0" width="1" height="1" fill="black"/> + <rect x="2" y="2" width="1" height="1" fill="black"/> +</svg> diff --git a/static/img/lightgrid.svg b/static/img/lightgrid.svg new file mode 100644 index 0000000..e16971b --- /dev/null +++ b/static/img/lightgrid.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6"> + <rect x="0" y="0" width="1" height="1" fill="black"/> + <rect x="3" y="3" width="1" height="1" fill="black"/> +</svg> |