Skip to content

Commit 82dc5e6

Browse files
authored
use new syntax for CSS color function values (#196)
use new syntax for css color function values
1 parent 6d9753d commit 82dc5e6

File tree

117 files changed

+230
-230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+230
-230
lines changed

assets/styles.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* Some default styling for cookbook examples */
22
/*
3-
rgb(53,43,34)
4-
rgb(75,70,74)
5-
rgb(95,97,110)
6-
rgb(137,151,188)
7-
rgb(160,178,226)
3+
rgb(53 43 34)
4+
rgb(75 70 74)
5+
rgb(95 97 110)
6+
rgb(137 151 188)
7+
rgb(160 178 226)
88
*/
99
body {
1010
background-color: #fff;

backdrop/styles.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* Some default styling for cookbook examples */
22
/*
3-
rgb(53,43,34)
4-
rgb(75,70,74)
5-
rgb(95,97,110)
6-
rgb(137,151,188)
7-
rgb(160,178,226)
3+
rgb(53 43 34)
4+
rgb(75 70 74)
5+
rgb(95 97 110)
6+
rgb(137 151 188)
7+
rgb(160 178 226)
88
*/
99
body {
1010
background-color: #fff;

box-alignment/flexbox/auto-margins.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161

6262
.box {
6363
width: 500px;
64-
border: 2px dotted rgb(96, 139, 168);
64+
border: 2px dotted rgb(96 139 168);
6565
}
6666

6767
.box > * {
6868
padding: 20px;
69-
border: 2px solid rgb(96, 139, 168);
69+
border: 2px solid rgb(96 139 168);
7070
border-radius: 5px;
7171
background-color: rgb(96 139 168 / 0.2);
7272
}

box-alignment/flexbox/gap.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161

6262
.box {
6363
width: 500px;
64-
border: 2px dotted rgb(96, 139, 168);
64+
border: 2px dotted rgb(96 139 168);
6565
}
6666

6767
.box > * {
6868
padding: 20px;
69-
border: 2px solid rgb(96, 139, 168);
69+
border: 2px solid rgb(96 139 168);
7070
border-radius: 5px;
7171
background-color: rgb(96 139 168 / 0.2);
7272
}

box-alignment/overview/flex-align-items.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161

6262
.box {
6363
width: 500px;
64-
border: 2px dotted rgb(96, 139, 168);
64+
border: 2px dotted rgb(96 139 168);
6565
}
6666

6767
.box > * {
6868
padding: 20px;
69-
border: 2px solid rgb(96, 139, 168);
69+
border: 2px solid rgb(96 139 168);
7070
border-radius: 5px;
7171
background-color: rgb(96 139 168 / 0.2);
7272
}

box-alignment/overview/grid-align-items.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161

6262
.box {
6363
width: 500px;
64-
border: 2px dotted rgb(96, 139, 168);
64+
border: 2px dotted rgb(96 139 168);
6565
}
6666

6767
.box > * {
6868
padding: 20px;
69-
border: 2px solid rgb(96, 139, 168);
69+
border: 2px solid rgb(96 139 168);
7070
border-radius: 5px;
7171
background-color: rgb(96 139 168 / 0.2);
7272
}

box-alignment/overview/grid-gap.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161

6262
.box {
6363
width: 500px;
64-
border: 2px dotted rgb(96, 139, 168);
64+
border: 2px dotted rgb(96 139 168);
6565
}
6666

6767
.box > * {
6868
padding: 20px;
69-
border: 2px solid rgb(96, 139, 168);
69+
border: 2px solid rgb(96 139 168);
7070
border-radius: 5px;
7171
background-color: rgb(96 139 168 / 0.2);
7272
}

css-cookbook/center--download.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222

2323
.container {
24-
border: 2px solid rgb(75, 70, 74);
24+
border: 2px solid rgb(75 70 74);
2525
border-radius: 0.5em;
2626
height: 200px;
2727
display: flex;
@@ -30,7 +30,7 @@
3030
}
3131

3232
.item {
33-
border: 2px solid rgb(95, 97, 110);
33+
border: 2px solid rgb(95 97 110);
3434
border-radius: 0.5em;
3535
padding: 20px;
3636
width: 10em;

css-cookbook/center.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<link rel="stylesheet" href="styles.css" />
88
<style>
99
.container {
10-
border: 2px solid rgb(75, 70, 74);
10+
border: 2px solid rgb(75 70 74);
1111
border-radius: 0.5em;
1212
}
1313

1414
.item {
15-
border: 2px solid rgb(95, 97, 110);
15+
border: 2px solid rgb(95 97 110);
1616
border-radius: 0.5em;
1717
padding: 20px;
1818
}

css-cookbook/columns-flexbox--download.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
}
2222

2323
.container {
24-
border: 2px solid rgb(75, 70, 74);
24+
border: 2px solid rgb(75 70 74);
2525
border-radius: 0.5em;
2626
padding: 20px 10px;
2727
display: flex;
2828
}
2929

3030
.container > * {
3131
padding: 10px;
32-
border: 2px solid rgb(95, 97, 110);
32+
border: 2px solid rgb(95 97 110);
3333
border-radius: 0.5em;
3434
margin: 0 10px;
3535
flex: 1;

0 commit comments

Comments
 (0)