├── CNAME
├── favicon.ico
├── favicon-16x16.png
├── favicon-32x32.png
├── mstile-150x150.png
├── apple-touch-icon.png
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── assets
├── fonts
│ ├── Solid-Mono.ttf
│ └── ParadroidMono-Light.ttf
└── styles
│ └── global.css
├── browserconfig.xml
├── site.webmanifest
├── index.html
└── safari-pinned-tab.svg
/CNAME:
--------------------------------------------------------------------------------
1 | avn.services
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/favicon.ico
--------------------------------------------------------------------------------
/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/favicon-16x16.png
--------------------------------------------------------------------------------
/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/favicon-32x32.png
--------------------------------------------------------------------------------
/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/mstile-150x150.png
--------------------------------------------------------------------------------
/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/apple-touch-icon.png
--------------------------------------------------------------------------------
/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/android-chrome-192x192.png
--------------------------------------------------------------------------------
/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/android-chrome-512x512.png
--------------------------------------------------------------------------------
/assets/fonts/Solid-Mono.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/assets/fonts/Solid-Mono.ttf
--------------------------------------------------------------------------------
/assets/fonts/ParadroidMono-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SilvanCodes/avn.services/main/assets/fonts/ParadroidMono-Light.ttf
--------------------------------------------------------------------------------
/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | #da532c
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/site.webmanifest:
--------------------------------------------------------------------------------
1 | {
2 | "name": "",
3 | "short_name": "",
4 | "icons": [
5 | {
6 | "src": "/android-chrome-192x192.png",
7 | "sizes": "192x192",
8 | "type": "image/png"
9 | },
10 | {
11 | "src": "/android-chrome-512x512.png",
12 | "sizes": "512x512",
13 | "type": "image/png"
14 | }
15 | ],
16 | "theme_color": "#ffffff",
17 | "background_color": "#ffffff",
18 | "display": "standalone"
19 | }
20 |
--------------------------------------------------------------------------------
/assets/styles/global.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --ratio: 1.98;
3 | }
4 |
5 | @font-face {
6 | font-family: "Paradroid";
7 | src: url("/assets/fonts/ParadroidMono-Light.ttf") format("truetype");
8 | font-weight: normal;
9 | font-style: normal;
10 | font-display: swap;
11 | }
12 |
13 | @font-face {
14 | font-family: "Solid";
15 | src: url("/assets/fonts/Solid-Mono.ttf") format("truetype");
16 | font-weight: normal;
17 | font-style: normal;
18 | font-display: swap;
19 | }
20 |
21 | h1,
22 | h2,
23 | h3,
24 | h4,
25 | h5,
26 | h6 {
27 | font-family: "Solid", -apple-system, BlinkMacSystemFont, "Segoe UI",
28 | Helvetica, Arial, sans-serif;
29 | }
30 |
31 | body {
32 | font-family: "Paradroid", -apple-system, BlinkMacSystemFont, "Segoe UI",
33 | Helvetica, Arial, sans-serif;
34 | line-height: var(--s1);
35 | font-weight: 600;
36 | color: #222;
37 | background: #fafafa;
38 | }
39 |
40 | img {
41 | max-width: 100%;
42 | }
43 |
44 | a {
45 | color: #107010;
46 | }
47 |
48 | section {
49 | padding: var(--s-1);
50 | }
51 |
52 | h1,
53 | h2,
54 | strong {
55 | color: #111;
56 | }
57 |
58 | section:hover {
59 | background: #efefef;
60 | }
61 |
62 | .bucket {
63 | list-style-type: none;
64 | }
65 |
66 | .bucket a {
67 | text-decoration: none;
68 | color: inherit;
69 | }
70 |
71 | .box-small {
72 | --box-padding: var(--s-2);
73 | }
74 |
75 | .box-small:hover {
76 | background: #dadada;
77 | animation: duck 0.3s forwards;
78 | }
79 |
80 | @keyframes duck {
81 | 0% {
82 | transform: scale(1);
83 | }
84 |
85 | 50% {
86 | transform: scale(0.95);
87 | }
88 |
89 | 100% {
90 | transform: scale(1);
91 | }
92 | }
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | AVN SERVICES
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | AVN SERVICES
35 |
36 |
37 |
38 | Baumpflege
39 |
40 | Mit Seilklettertechnik A (SKT-A) und Handsäge.
41 |
42 |
43 | Mit AS-Baum I und Kettensäge.
44 |
45 |
46 | baumpflege@avn.services
47 |
48 |
49 |
50 |
51 |
52 |
61 |
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/safari-pinned-tab.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
636 |
--------------------------------------------------------------------------------