Skip to content

Commit 71d7cc4

Browse files
committed
0.10.1
1 parent d9e684d commit 71d7cc4

File tree

8 files changed

+18
-8
lines changed

8 files changed

+18
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ See form example: [Bootstrap](https://jsfiddle.net/z16aknfh/3/) vs
3838
## Quick Start
3939

4040
```html
41-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.0" />
41+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.1" />
4242
```
4343

4444
## Browser compatibility

dist/holiday.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,16 @@ picture {
769769
nav {
770770
background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23fff" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>');
771771
}
772+
773+
/* stylelint-disable-next-line selector-max-class */
774+
.holiday-css-light nav {
775+
background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23363636" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>');
776+
}
777+
}
778+
779+
/* stylelint-disable-next-line selector-max-class */
780+
.holiday-css-dark nav {
781+
background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23fff" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>');
772782
}
773783
}
774784
:root {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "holiday.css",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "A minimalist classless CSS theme with dark mode support",
55
"main": "dist/holiday.css",
66
"style": "dist/holiday.css",

site/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Or you can use it as a base and build upon it.
2222
Just add this to your `<head>`:
2323

2424
```html
25-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.0" />
25+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.1" />
2626
```
2727

2828
## What makes holiday.css different

site/_includes/layout.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
99
<link
1010
rel="stylesheet"
11-
href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.0"
11+
href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.1"
1212
/>
1313
<link
1414
rel="stylesheet"

site/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<link
99
rel="stylesheet"
10-
href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.0"
10+
href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.1"
1111
/>
1212
</head>
1313

site/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ layout: layout
88
Have an existing web page? Add this to your `<head>`:
99

1010
```html
11-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.0" />
11+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.10.1" />
1212
```
1313

1414
Starting afresh? Use [Quickstart Template]({{ "/template/" | url }}).

0 commit comments

Comments
 (0)