|
|
|
@ -121,13 +121,16 @@ Add three circles to your `<svg>` element (each one will represent a run):
|
|
|
|
</svg>
|
|
|
|
</svg>
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Create `app.css` with some styling for the circles:
|
|
|
|
Create `app.css` with some styling for the circles and our `svg` element:
|
|
|
|
|
|
|
|
|
|
|
|
```css
|
|
|
|
```css
|
|
|
|
circle {
|
|
|
|
circle {
|
|
|
|
r:5;
|
|
|
|
r:5;
|
|
|
|
fill: black;
|
|
|
|
fill: black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
and link to it in `index.html`
|
|
|
|
and link to it in `index.html`
|
|
|
|
|