Skip to content

Commit 126e3a4

Browse files
authored
Merge pull request #1 from ai/patch-1
Make examples smaller and fix indent
2 parents ee3a137 + 7106b28 commit 126e3a4

File tree

1 file changed

+4
-25
lines changed

1 file changed

+4
-25
lines changed

README.md

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,55 +7,34 @@
77

88
```css
99
:root {
10-
--first-color: #16f;
11-
--second-color: #ff7;
10+
--first-color: #16f;
11+
--second-color: #ff7;
1212
}
1313

1414
#firstParagraph {
1515
background-color: var(--first-color);
1616
color: var(--second-color);
1717
}
1818

19-
#secondParagraph {
20-
background-color: var(--second-color);
21-
color: var(--first-color);
22-
}
23-
2419
#container {
2520
--first-color: #290;
2621
}
27-
28-
.thirdParagraph {
29-
background-color: var(--first-color);
30-
color: var(--second-color);
31-
}
3222
```
3323

3424
```css
3525
:root {
36-
--0: #16f;
37-
--1: #ff7;
38-
--2: #000;
26+
--0: #16f;
27+
--1: #ff7;
3928
}
4029

4130
#firstParagraph {
4231
background-color: var(--0);
4332
color: var(--1);
4433
}
4534

46-
#secondParagraph {
47-
background-color: var(--1);
48-
color: var(--0);
49-
}
50-
5135
#container {
5236
--0: #290;
5337
}
54-
55-
.thirdParagraph {
56-
background-color: var(--0);
57-
color: var(--1);
58-
}
5938
```
6039

6140
## Usage

0 commit comments

Comments
 (0)