jekyll-nagymaros 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +92 -0
- data/_config.yml +22 -0
- data/_data/contributors.yml +0 -0
- data/_data/index.yml +0 -0
- data/_data/locations.yml +0 -0
- data/_data/program.yml +0 -0
- data/_includes/footer.html +6 -0
- data/_includes/head.html +18 -0
- data/_includes/header.html +31 -0
- data/_includes/metadata.liquid +11 -0
- data/_layouts/404.html +16 -0
- data/_layouts/contributors.html +42 -0
- data/_layouts/default.html +13 -0
- data/_layouts/index.html +35 -0
- data/_layouts/locations.html +19 -0
- data/_layouts/page.html +16 -0
- data/_layouts/program.html +114 -0
- data/_sass/_custom.scss +0 -0
- data/_sass/_elements.scss +46 -0
- data/_sass/_fonts.scss +46 -0
- data/_sass/_utilities.scss +43 -0
- data/_sass/overrides/_bootstrap.scss +81 -0
- data/_sass/overrides/_leaflet.scss +20 -0
- data/assets/css/bootstrap.css +12068 -0
- data/assets/css/leaflet.css +661 -0
- data/assets/css/open-color.css +343 -0
- data/assets/css/styles.scss +11 -0
- data/assets/images/layers-2x.png +0 -0
- data/assets/images/layers.png +0 -0
- data/assets/images/marker-icon-2x.png +0 -0
- data/assets/images/marker-icon.png +0 -0
- data/assets/images/marker-shadow.png +0 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/leaflet.js +6 -0
- data/assets/js/main.js +60 -0
- data/assets/webfonts/Inter-Bold.woff2 +0 -0
- data/assets/webfonts/Inter-BoldItalic.woff2 +0 -0
- data/assets/webfonts/Inter-Italic.woff2 +0 -0
- data/assets/webfonts/Inter-Light.woff2 +0 -0
- data/assets/webfonts/Inter-LightItalic.woff2 +0 -0
- data/assets/webfonts/Inter-Medium.woff2 +0 -0
- data/assets/webfonts/Inter-MediumItalic.woff2 +0 -0
- data/assets/webfonts/Inter-Regular.woff2 +0 -0
- data/assets/webfonts/ZillaSlab-Light.woff2 +0 -0
- data/assets/webfonts/ZillaSlab-LightItalic.woff2 +0 -0
- metadata +137 -0
@@ -0,0 +1,81 @@
|
|
1
|
+
a {
|
2
|
+
color: var(--oc-blue-7);
|
3
|
+
text-decoration: none;
|
4
|
+
|
5
|
+
&:hover {
|
6
|
+
color: var(--oc-blue-9);
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
body {
|
11
|
+
background-color: var(--oc-gray-0);
|
12
|
+
color: var(--oc-gray-8);
|
13
|
+
font-family: "Inter", var(--bs-font-sans-serif);
|
14
|
+
font-size: 1.15rem;
|
15
|
+
}
|
16
|
+
|
17
|
+
.btn-primary {
|
18
|
+
background-color: var(--oc-blue-5) !important;
|
19
|
+
border-color: transparent !important;
|
20
|
+
color: var(--oc-gray-0);
|
21
|
+
|
22
|
+
&:hover,
|
23
|
+
&:active,
|
24
|
+
&.active {
|
25
|
+
background-color: var(--oc-blue-7) !important;
|
26
|
+
}
|
27
|
+
|
28
|
+
&.disabled {
|
29
|
+
background-color: var(--oc-blue-3) !important;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
.btn-secondary {
|
34
|
+
background-color: var(--oc-gray-4) !important;
|
35
|
+
border-color: transparent !important;
|
36
|
+
color: var(--oc-gray-0);
|
37
|
+
|
38
|
+
&:hover,
|
39
|
+
&:active,
|
40
|
+
&.active {
|
41
|
+
background-color: var(--oc-gray-6) !important;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
@for $level from 1 through 6 {
|
46
|
+
.display-#{$level} {
|
47
|
+
font-family: "Zilla Slab", var(--bs-font-sans-serif);
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.lead {
|
52
|
+
font-size: 1.5rem;
|
53
|
+
}
|
54
|
+
|
55
|
+
.navbar-brand {
|
56
|
+
color: var(--oc-gray-8);
|
57
|
+
|
58
|
+
&:hover {
|
59
|
+
color: var(--oc-gray-9);
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
.nav-link {
|
64
|
+
color: var(--oc-gray-7);
|
65
|
+
|
66
|
+
&:hover {
|
67
|
+
color: var(--oc-gray-9);
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
.text-muted {
|
72
|
+
color: var(--oc-gray-6) !important;
|
73
|
+
|
74
|
+
a {
|
75
|
+
color: inherit;
|
76
|
+
|
77
|
+
&:hover {
|
78
|
+
color: var(--oc-gray-9);
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
.leaflet-container {
|
2
|
+
font-family: "Inter", var(--bs-font-sans-serif);
|
3
|
+
font-size: 0.8rem;
|
4
|
+
}
|
5
|
+
|
6
|
+
.leaflet-control-attribution {
|
7
|
+
display: none;
|
8
|
+
}
|
9
|
+
|
10
|
+
.leaflet-control-layers-toggle {
|
11
|
+
background-image: url(../images/layers.png);
|
12
|
+
}
|
13
|
+
|
14
|
+
.leaflet-retina .leaflet-control-layers-toggle {
|
15
|
+
background-image: url(../images/layers-2x.png);
|
16
|
+
}
|
17
|
+
|
18
|
+
.leaflet-default-icon-path {
|
19
|
+
background-image: url(../images/marker-icon.png);
|
20
|
+
}
|