Skip to content

Commit

Permalink
Merge pull request #9 from technoveltyco/5-team-profile-generator-html
Browse files Browse the repository at this point in the history
Fix svg urls using reltive paths
  • Loading branch information
technoveltyco authored Mar 1, 2023
2 parents b8f64e5 + ac2c5a9 commit 22834f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
--c4: hsl(0, 100%, 99%); /* snow */

/* backgrounds with textures and gradients */
--bg-brick: var(--c1) url(/assets/img/brick-wall-pattern.svg);
--bg-thin-stripes: var(--c2) url(/assets/img/thin-tripes-texture.svg);
--bg-wood: var(--c4) url(/assets/img/wood-veneer.jpg);
--bg-wood-gr: url(/assets/img/wood-gradient.svg) 10% stretch;
--bg-brick: var(--c1) url(../img/brick-wall-pattern.svg);
--bg-thin-stripes: var(--c2) url(../img/thin-tripes-texture.svg);
--bg-wood: var(--c4) url(../img/wood-veneer.jpg);
--bg-wood-gr: url(../img/wood-gradient.svg) 10% stretch;
--bg-gr1: linear-gradient(to right, var(--c3-s1) 35%, var(--c3) 100%);

/* shadows */
Expand Down

0 comments on commit 22834f6

Please sign in to comment.