Skip to content

Commit 0f1239e

Browse files
Add files via upload
1 parent a1366c5 commit 0f1239e

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

Kingdom.jpeg

553 KB
Loading

extra/custom-head.blade.php

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{{--
2+
3+
4+
|--------------------------------------------------------------------------
5+
| Custom assets
6+
|--------------------------------------------------------------------------
7+
8+
Custom assets are stored in the 'custom-assets' directory found inside the 'extra' folder.
9+
Custom assets can be any file you would like to use in your theme.
10+
For example: JS, CSS or image files.
11+
12+
You can load these custom assets with a built-in function, 'themeAsset()'.
13+
Add the file you want to add to your 'custom-assets' folder, and include the name with the file extension in the function.
14+
15+
Down below, you can find a few examples using this function:
16+
17+
18+
19+
--}}
20+
21+
<style>
22+
/* latin */
23+
@font-face { font-family: 'Karla'; font-style: normal; font-weight: 400;
24+
font-stretch: 100%; font-display: swap; src: url('{{themeAsset('karla-latin-400-normal.woff2')}}'), url('{{themeAsset('karla-latin-400-normal.woff')}}');
25+
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
26+
}
27+
28+
html {
29+
font-size: 100%; }
30+
31+
:root {
32+
--bgColor: #f5af19;
33+
--bgColor2: #f12711;
34+
--accentColor: #FFF;
35+
--font: 'Roboto', sans-serif;
36+
--delay: .3s; }
37+
</style>

0 commit comments

Comments
 (0)