From b130ed4e58ad6e6079b6bbfe04830482233d55f3 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 17 Sep 2017 18:23:02 -0700 Subject: [PATCH] Add SVG circles and style them --- BUILD.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BUILD.md b/BUILD.md index c5c7d6e..b09b9a4 100644 --- a/BUILD.md +++ b/BUILD.md @@ -121,13 +121,16 @@ Add three circles to your `` element (each one will represent a run): ``` -Create `app.css` with some styling for the circles: +Create `app.css` with some styling for the circles and our `svg` element: ```css circle { r:5; fill: black; } +svg { + border: 1px solid black; +} ``` and link to it in `index.html`