Compare commits
2 Commits
9036561668
...
83f45fefff
Author | SHA1 | Date |
---|---|---|
|
83f45fefff | |
|
0c6ae76ed9 |
|
@ -7,6 +7,11 @@
|
|||
|
||||
@use "@picocss/pico/scss/colors/index" as *;
|
||||
|
||||
/* To remove the rounded corner of the webkit audio player */
|
||||
audio::-webkit-media-controls-enclosure {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.audio,
|
||||
.stream {
|
||||
border: var(--pico-border-width) solid $purple-200 ;
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"targetPath" "styles.css"
|
||||
"includePaths" (slice "node_modules")
|
||||
) -}}
|
||||
{{- $styles := resources.Get "scss/main.scss" | toCSS $options | minify -}}
|
||||
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
||||
{{- $styles := resources.Get "scss/main.scss" | toCSS $options | minify | fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}" media="screen">
|
||||
{{- end }}
|
||||
{{ $options := (dict "targetPath" "print.css" ) -}}
|
||||
{{- $print := resources.Get "css/gutenberg.css" | toCSS $options | minify -}}
|
||||
<link rel="stylesheet" href="{{ $print.Permalink }}" media="print">
|
||||
{{- $print := resources.Get "css/gutenberg.css" | toCSS $options | minify | fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $print.Permalink }}" integrity="{{ $print.Data.Integrity }}" media="print">
|
||||
{{ range .AlternativeOutputFormats }}
|
||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in New Issue