spoko-design-system 0.0.1 → 0.0.5
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.
- package/.astro/icon.d.ts +8109 -10
- package/.github/workflows/deploy.yml +39 -39
- package/.stackblitzrc +5 -5
- package/.vscode/extensions.json +5 -4
- package/.vscode/launch.json +11 -11
- package/.vscode/settings.json +6 -0
- package/LICENSE +21 -21
- package/Layout/Header.astro +111 -89
- package/README.md +94 -69
- package/astro-i18next.config.mjs +17 -17
- package/astro-i18next.config.ts +10 -10
- package/astro.config.mjs +51 -42
- package/index.ts +6 -6
- package/package.json +25 -17
- package/public/astro-design-system-logo.svg +10 -10
- package/public/favicon.ico +0 -0
- package/public/favicon.svg +0 -0
- package/public/fonts/lg.svg +53 -53
- package/public/fonts/vwhead-bold-demo.html +549 -549
- package/public/fonts/vwhead-regular-demo.html +549 -549
- package/public/fonts/vwtext-bold-demo.html +549 -549
- package/public/fonts/vwtext-regular-demo.html +549 -549
- package/public/github.svg +3 -3
- package/public/grid_dot.svg +4 -4
- package/public/linkedin.svg +44 -44
- package/public/locales/en/translation.json +8 -5
- package/public/locales/pl/translation.json +8 -5
- package/public/make-scrollable-code-focusable.js +3 -3
- package/public/polo.blue.svg +29 -0
- package/public/spoko.space.svg +71 -0
- package/public/twitter.svg +46 -46
- package/sandbox.config.json +11 -11
- package/src/MyComponent.astro +8 -8
- package/src/components/Badge.vue +19 -19
- package/src/components/Badges.vue +24 -23
- package/src/components/Breadcrumbs.vue +108 -111
- package/src/components/Button.vue +37 -0
- package/src/components/ButtonCopy.vue +52 -0
- package/src/components/Card.astro +25 -0
- package/src/components/CategoryLink.astro +18 -0
- package/src/components/Copyright.astro +11 -11
- package/src/components/Date.astro +7 -0
- package/src/components/FuckRussia.vue +65 -65
- package/src/components/HandDrive.astro +29 -30
- package/src/components/HeadCommon.astro +40 -40
- package/src/components/HeadSEO.astro +41 -41
- package/src/components/Header/AstroLogo.astro +7 -27
- package/src/components/Header/Header.astro +44 -48
- package/src/components/Header/SkipToContent.astro +1 -1
- package/src/components/Headline.vue +60 -0
- package/src/components/Image.astro +30 -0
- package/src/components/Jumbatron.vue +46 -31
- package/src/components/LeftSidebar.astro +45 -44
- package/src/components/MainColors.vue +29 -29
- package/src/components/MainInput.vue +18 -18
- package/src/components/MainTable.vue +40 -45
- package/src/components/Modal.astro +30 -0
- package/src/components/PageContent.astro +14 -14
- package/src/components/PostHeader.astro +104 -0
- package/src/components/PrCode.vue +156 -0
- package/src/components/ProductNumber.astro +117 -0
- package/src/components/ProductTile.astro +54 -0
- package/src/components/RightSidebar.astro +15 -11
- package/src/components/SlimBanner.vue +59 -59
- package/src/components/TableOfContents.astro +11 -11
- package/src/components/Translations.vue +27 -0
- package/src/components/flags/FlagPL.vue +2 -2
- package/src/components/flags/FlagUA.vue +2 -2
- package/src/components/layout/Header.astro +50 -69
- package/src/config.ts +51 -42
- package/src/design.config.ts +73 -92
- package/src/env.d.ts +1 -1
- package/src/flag-poland.svg +1 -0
- package/src/flag-uk.svg +1 -0
- package/src/layouts/Layout.astro +43 -0
- package/src/layouts/MainLayout.astro +60 -50
- package/src/pages/components/badges.mdx +69 -35
- package/src/pages/components/breadcrumbs.mdx +136 -103
- package/src/pages/components/buttons.mdx +143 -60
- package/src/pages/components/card.mdx +40 -0
- package/src/pages/components/copyright.mdx +41 -24
- package/src/pages/components/flags.mdx +40 -26
- package/src/pages/components/fuck-russia.mdx +39 -16
- package/src/pages/components/hand-drive.mdx +38 -27
- package/src/pages/components/headline.mdx +148 -0
- package/src/pages/components/icons.astro +54 -45
- package/src/pages/components/image.mdx +502 -0
- package/src/pages/components/input.mdx +45 -14
- package/src/pages/components/jumbatron.mdx +71 -48
- package/src/pages/components/modal.mdx +64 -0
- package/src/pages/components/post-header.mdx +58 -0
- package/src/pages/components/pr-code.mdx +41 -0
- package/src/pages/components/product-number.mdx +65 -0
- package/src/pages/components/product-tile.mdx +39 -0
- package/src/pages/components/slimbanner.mdx +29 -27
- package/src/pages/components/table.mdx +39 -20
- package/src/pages/core/colors.mdx +8 -8
- package/src/pages/core/introduction.mdx +74 -68
- package/src/pages/core/shadows.astro +20 -20
- package/src/pages/core/typography.astro +46 -46
- package/src/pages/index.astro +70 -52
- package/src/pages/patterns/introduction.mdx +60 -61
- package/src/styles/_variables.scss +75 -75
- package/src/styles/base/_base.scss +166 -158
- package/src/styles/base/_typography.scss +147 -147
- package/src/styles/content.scss +66 -71
- package/src/styles/main.scss +22 -22
- package/tailwind.config.cjs +8 -8
- package/tsconfig.json +11 -11
- package/uno.config.ts +246 -227
- package/src/components/MainButton.vue +0 -26
- package/src/components/MainStatusPill.vue +0 -32
- package/src/pages/components/status-pill.mdx +0 -22
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
---
|
|
2
|
-
import MainLayout from '../../layouts/MainLayout.astro';
|
|
3
|
-
import { SHADOWS } from '../../design.config'
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
<MainLayout>
|
|
8
|
-
<h1>Shadows</h1>
|
|
9
|
-
<div class="component-preview">
|
|
10
|
-
<div class="inline-grid grid-cols-2 gap-16">
|
|
11
|
-
{SHADOWS.types.map(({name, value}) => (
|
|
12
|
-
<div class="p-2 bg-white rounded-md text-slate-500 text-right pt-16 pl-24 font-mono" style={"box-shadow: " + value}>{name}</div>
|
|
13
|
-
))}
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
<pre class="astro-code bg-slate-800 text-white">
|
|
17
|
-
{SHADOWS.types.map(({name, value}) => (
|
|
18
|
-
<div class="my-2">{`${name}: ${value}`}</div>
|
|
19
|
-
))}
|
|
20
|
-
</pre>
|
|
1
|
+
---
|
|
2
|
+
import MainLayout from '../../layouts/MainLayout.astro';
|
|
3
|
+
import { SHADOWS } from '../../design.config'
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
<MainLayout>
|
|
8
|
+
<h1>Shadows</h1>
|
|
9
|
+
<div class="component-preview">
|
|
10
|
+
<div class="inline-grid grid-cols-2 gap-16">
|
|
11
|
+
{SHADOWS.types.map(({name, value}) => (
|
|
12
|
+
<div class="p-2 bg-white rounded-md text-slate-500 text-right pt-16 pl-24 font-mono" style={"box-shadow: " + value}>{name}</div>
|
|
13
|
+
))}
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
<pre class="astro-code bg-slate-800 text-white">
|
|
17
|
+
{SHADOWS.types.map(({name, value}) => (
|
|
18
|
+
<div class="my-2">{`${name}: ${value}`}</div>
|
|
19
|
+
))}
|
|
20
|
+
</pre>
|
|
21
21
|
</MainLayout>
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
---
|
|
2
|
-
import MainLayout from '../../layouts/MainLayout.astro'
|
|
3
|
-
import { TYPOGRAPHY } from '../../design.config'
|
|
4
|
-
import { FONTS } from '../../design.config'
|
|
5
|
-
const getStyle = (item) => {
|
|
6
|
-
return `font-size: ${item.size}; font-weight: ${item.weight};`
|
|
7
|
-
}
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
<MainLayout>
|
|
11
|
-
<h1>Typography</h1>
|
|
12
|
-
<div class="w-full">
|
|
13
|
-
{
|
|
14
|
-
TYPOGRAPHY.scale.map((item) => (
|
|
15
|
-
<div class="mt-6 border-t py-4">
|
|
16
|
-
<p style={getStyle(item)}>Hello world</p>
|
|
17
|
-
<div class="flex gap-6 text-slate-500 font-mono">
|
|
18
|
-
<span>{item.name}</span>
|
|
19
|
-
<span>weight: {item.weight}</span>
|
|
20
|
-
<span>size: {item.size}</span>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
))
|
|
24
|
-
}
|
|
25
|
-
</div>
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<h1>Fonts</h1>
|
|
30
|
-
<div class="component-preview ">
|
|
31
|
-
<div class="flex flex-wrap gap-16">
|
|
32
|
-
{FONTS.types.map(({name, value}) => (
|
|
33
|
-
<div class="w-full">
|
|
34
|
-
<div class={`${value} text-3xl`} >Lorem Ipsum</div>
|
|
35
|
-
<div class="">{name}</div>
|
|
36
|
-
</div>
|
|
37
|
-
))}
|
|
38
|
-
</div>
|
|
39
|
-
</div>
|
|
40
|
-
|
|
41
|
-
<pre class="astro-code bg-slate-800 text-white">
|
|
42
|
-
{FONTS.types.map(({name, value}) => (
|
|
43
|
-
<div class="my-5">{`${name}:`}<br><pre>{value}</pre></div>
|
|
44
|
-
))}
|
|
45
|
-
</pre>
|
|
46
|
-
|
|
1
|
+
---
|
|
2
|
+
import MainLayout from '../../layouts/MainLayout.astro'
|
|
3
|
+
import { TYPOGRAPHY } from '../../design.config'
|
|
4
|
+
import { FONTS } from '../../design.config'
|
|
5
|
+
const getStyle = (item) => {
|
|
6
|
+
return `font-size: ${item.size}; font-weight: ${item.weight};`
|
|
7
|
+
}
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<MainLayout>
|
|
11
|
+
<h1>Typography</h1>
|
|
12
|
+
<div class="w-full">
|
|
13
|
+
{
|
|
14
|
+
TYPOGRAPHY.scale.map((item) => (
|
|
15
|
+
<div class="mt-6 border-t py-4">
|
|
16
|
+
<p style={getStyle(item)}>Hello world</p>
|
|
17
|
+
<div class="flex gap-6 text-slate-500 font-mono">
|
|
18
|
+
<span>{item.name}</span>
|
|
19
|
+
<span>weight: {item.weight}</span>
|
|
20
|
+
<span>size: {item.size}</span>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
))
|
|
24
|
+
}
|
|
25
|
+
</div>
|
|
26
|
+
<div class="font-novamono"></div>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
<h1>Fonts</h1>
|
|
30
|
+
<div class="component-preview ">
|
|
31
|
+
<div class="flex flex-wrap gap-16">
|
|
32
|
+
{FONTS.types.map(({name, value}) => (
|
|
33
|
+
<div class="w-full">
|
|
34
|
+
<div class={`${value} text-3xl`} >Lorem Ipsum</div>
|
|
35
|
+
<div class="">{name}</div>
|
|
36
|
+
</div>
|
|
37
|
+
))}
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<pre class="astro-code bg-slate-800 text-white">
|
|
42
|
+
{FONTS.types.map(({name, value}) => (
|
|
43
|
+
<div class="my-5">{`${name}:`}<br><pre>{value}</pre></div>
|
|
44
|
+
))}
|
|
45
|
+
</pre>
|
|
46
|
+
|
|
47
47
|
</MainLayout>
|
package/src/pages/index.astro
CHANGED
|
@@ -1,52 +1,70 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
</
|
|
50
|
-
|
|
51
|
-
<
|
|
52
|
-
|
|
1
|
+
---
|
|
2
|
+
import { changeLanguage } from "i18next";
|
|
3
|
+
import { Icon } from "astro-icon/components";
|
|
4
|
+
import { SITE } from "../config";
|
|
5
|
+
import Jumbatron from "../components/Jumbatron.vue";
|
|
6
|
+
import Layout from "../layouts/Layout.astro";
|
|
7
|
+
import Headline from "../components/Headline.vue";
|
|
8
|
+
import Button from "../components/Button.vue";
|
|
9
|
+
|
|
10
|
+
const navItems = [
|
|
11
|
+
{
|
|
12
|
+
title: "Core",
|
|
13
|
+
description: "Base colors, typography, shadows, and more.",
|
|
14
|
+
url: "/core/introduction",
|
|
15
|
+
icon: "ant-design:cluster-outlined"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
title: "Components",
|
|
19
|
+
description: "The building blocks for our UI.",
|
|
20
|
+
url: "/components/buttons",
|
|
21
|
+
icon: "ant-design:build-twotone"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
title: "Patterns",
|
|
25
|
+
description: "Common patterns for building interfaces.",
|
|
26
|
+
url: "/patterns/introduction",
|
|
27
|
+
icon: "ant-design:audit-outlined"
|
|
28
|
+
},
|
|
29
|
+
];
|
|
30
|
+
---
|
|
31
|
+
<Layout>
|
|
32
|
+
<div class="bg-slate-100 min-h-screen text-center" >
|
|
33
|
+
<Jumbatron class="w-full">
|
|
34
|
+
<span slot="intro" set:html={SITE.title} />
|
|
35
|
+
|
|
36
|
+
<p slot="subtitle"
|
|
37
|
+
class="mt-3 text-base text-gray-200 sm:mt-5 text-lg md:text-xl lg:mx-0 md:mt-5"
|
|
38
|
+
set:html={SITE.description}
|
|
39
|
+
/>
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
<Button slot="cta"
|
|
43
|
+
href="/core/introduction/"
|
|
44
|
+
title="Spoko Design System"
|
|
45
|
+
primary
|
|
46
|
+
>
|
|
47
|
+
Read More
|
|
48
|
+
</Button>
|
|
49
|
+
</Jumbatron>
|
|
50
|
+
<nav>
|
|
51
|
+
<ul class="flex gap-4 max-w-5xl mx-auto text-left mt-12">
|
|
52
|
+
{
|
|
53
|
+
navItems.map(({ title, description, url, icon }) => (
|
|
54
|
+
<a
|
|
55
|
+
href={url}
|
|
56
|
+
class="flex flex-col bg-white rounded-md hover:-translate-y-1 hover:shadow-lg transition-all flex-1 items-center py-10 px-4 text-center"
|
|
57
|
+
>
|
|
58
|
+
<Headline as="h2" textSize="2xl">
|
|
59
|
+
<Icon name={icon} aria-hidden="true" class="text-blue-wrc mr-2" />
|
|
60
|
+
{title}
|
|
61
|
+
</Headline>
|
|
62
|
+
<p class="text-slate-500">{description}</p>
|
|
63
|
+
</a>
|
|
64
|
+
))
|
|
65
|
+
}
|
|
66
|
+
</ul>
|
|
67
|
+
</nav>
|
|
68
|
+
</div>
|
|
69
|
+
</Layout>
|
|
70
|
+
<script is:inline></script>
|
|
@@ -1,61 +1,60 @@
|
|
|
1
|
-
---
|
|
2
|
-
layout: ../../layouts/MainLayout.astro
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
import Container from '../../components/layout/Container.astro'
|
|
6
|
-
import Header from '../../components/layout/Header.astro'
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
# Patterns
|
|
10
|
-
|
|
11
|
-
Common patterns for building interfaces.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
<
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
<
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
```
|
|
1
|
+
---
|
|
2
|
+
layout: ../../layouts/MainLayout.astro
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
import Container from '../../components/layout/Container.astro'
|
|
6
|
+
import Header from '../../components/layout/Header.astro'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# Patterns
|
|
10
|
+
|
|
11
|
+
Common patterns for building interfaces.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Container (max-w-screen-xl)
|
|
16
|
+
|
|
17
|
+
<div class="component-preview" style="display: block">
|
|
18
|
+
<Container class="bg-white">content</Container>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
### Code
|
|
22
|
+
|
|
23
|
+
```ts
|
|
24
|
+
<Container class="bg-white">content</Container>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Container FullWidth (max-w-full)
|
|
29
|
+
|
|
30
|
+
<div class="component-preview" style="display: block">
|
|
31
|
+
<Container class="bg-white" isFullWidth>content</Container>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
### Code
|
|
35
|
+
|
|
36
|
+
```ts
|
|
37
|
+
<Container class="bg-white" isFullWidth>content</Container>
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Header
|
|
41
|
+
|
|
42
|
+
<div class="component-preview" style="display: block">
|
|
43
|
+
<Header class="static">
|
|
44
|
+
<div slot="logo" class="flex-shrink-0 flex items-center h-8">
|
|
45
|
+
<div class="bg-gray">LOGO</div>
|
|
46
|
+
</div>
|
|
47
|
+
<input type="text" slot="search" class="h-full w-full sm:w-52 md:w-64 border border-solid px-3 text-sm" placeholder="Search..."/>
|
|
48
|
+
</Header>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
### Code
|
|
52
|
+
|
|
53
|
+
```ts
|
|
54
|
+
<Header>
|
|
55
|
+
<div slot="logo" class="flex-shrink-0 flex items-center h-8">
|
|
56
|
+
<div class="bg-gray">LOGO</div>
|
|
57
|
+
</div>
|
|
58
|
+
<input type="text" slot="search" class="h-full w-full sm:w-52 md:w-64 border border-solid px-3 text-sm" placeholder="Search..."/>
|
|
59
|
+
</Header>
|
|
60
|
+
```
|
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
$navbar-height-md: 56px;
|
|
2
|
-
$navbar-height: 52px;
|
|
3
|
-
$special-menu-height: 145px;
|
|
4
|
-
$footer-navbar-height: 45px;
|
|
5
|
-
$footer-content-height: 166px;
|
|
6
|
-
|
|
7
|
-
$content-padding-bottom: 17px;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
// Color system
|
|
11
|
-
|
|
12
|
-
$white: #fff !default;
|
|
13
|
-
$gray-100: #f8f9fa !default;
|
|
14
|
-
$gray-200: #e9ecef !default;
|
|
15
|
-
$gray-300: #dee2e6 !default;
|
|
16
|
-
$gray-400: #ced4da !default;
|
|
17
|
-
$gray-500: #adb5bd !default;
|
|
18
|
-
$gray-600: #6c757d !default;
|
|
19
|
-
$gray-700: #495057 !default;
|
|
20
|
-
$gray-800: #343a40 !default;
|
|
21
|
-
$gray-900: #212529 !default;
|
|
22
|
-
$black: #000 !default;
|
|
23
|
-
|
|
24
|
-
$filter-label: #a8a8a8;
|
|
25
|
-
|
|
26
|
-
$bg-stylish: #F6F6F6;
|
|
27
|
-
$bg-highlighted: #E7E7E7;
|
|
28
|
-
$badge-dark: #202020;
|
|
29
|
-
|
|
30
|
-
// social media colors:
|
|
31
|
-
$facebook: #4267B2;
|
|
32
|
-
$youtube: #ff0000;
|
|
33
|
-
$ebay: #3665f3;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
$grays: () !default;
|
|
37
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
|
38
|
-
$grays: map-merge(("100": $gray-100,
|
|
39
|
-
"200": $gray-200,
|
|
40
|
-
"300": $gray-300,
|
|
41
|
-
"400": $gray-400,
|
|
42
|
-
"500": $gray-500,
|
|
43
|
-
"600": $gray-600,
|
|
44
|
-
"700": $gray-700,
|
|
45
|
-
"800": $gray-800,
|
|
46
|
-
"900": $gray-900),
|
|
47
|
-
$grays);
|
|
48
|
-
|
|
49
|
-
$lightblue: #ccecff;
|
|
50
|
-
$vwblue: #0786ba;
|
|
51
|
-
$vwblue2: #00b1eb;
|
|
52
|
-
$blue: #0099da; //#0070B2; //#007bff !default;
|
|
53
|
-
$darkblue: #00437A;
|
|
54
|
-
$verydarkblue: #232737;
|
|
55
|
-
$indigo: #6610f2 !default;
|
|
56
|
-
$purple: #6f42c1 !default;
|
|
57
|
-
$pink: #e83e8c !default;
|
|
58
|
-
$red: #dc3545;//#e94e1b; //#dc3545 !default;
|
|
59
|
-
$orange: #ff5a00; //allegro//#f4831d; //#ff9700; // #fd7e14 !default;
|
|
60
|
-
$orange-darken: #e94d1a;
|
|
61
|
-
$yellow: #ffc107 !default;
|
|
62
|
-
$green: #28a745 !default;
|
|
63
|
-
$teal: #20c997 !default;
|
|
64
|
-
$cyan: #17a2b8 !default;
|
|
65
|
-
$grey: #797878 !default;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
$primary: $blue; // $blue !default;
|
|
69
|
-
$secondary: $grey; //$gray-600; //$gray-600 !default;
|
|
70
|
-
$success: $green !default;
|
|
71
|
-
$info: $ebay;//$cyan !default;
|
|
72
|
-
$warning: $orange !default;
|
|
73
|
-
$danger: $red !default;
|
|
74
|
-
$light: $gray-100 !default;
|
|
75
|
-
$dark: $gray-900 !default;
|
|
1
|
+
$navbar-height-md: 56px;
|
|
2
|
+
$navbar-height: 52px;
|
|
3
|
+
$special-menu-height: 145px;
|
|
4
|
+
$footer-navbar-height: 45px;
|
|
5
|
+
$footer-content-height: 166px;
|
|
6
|
+
|
|
7
|
+
$content-padding-bottom: 17px;
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
// Color system
|
|
11
|
+
|
|
12
|
+
$white: #fff !default;
|
|
13
|
+
$gray-100: #f8f9fa !default;
|
|
14
|
+
$gray-200: #e9ecef !default;
|
|
15
|
+
$gray-300: #dee2e6 !default;
|
|
16
|
+
$gray-400: #ced4da !default;
|
|
17
|
+
$gray-500: #adb5bd !default;
|
|
18
|
+
$gray-600: #6c757d !default;
|
|
19
|
+
$gray-700: #495057 !default;
|
|
20
|
+
$gray-800: #343a40 !default;
|
|
21
|
+
$gray-900: #212529 !default;
|
|
22
|
+
$black: #000 !default;
|
|
23
|
+
|
|
24
|
+
$filter-label: #a8a8a8;
|
|
25
|
+
|
|
26
|
+
$bg-stylish: #F6F6F6;
|
|
27
|
+
$bg-highlighted: #E7E7E7;
|
|
28
|
+
$badge-dark: #202020;
|
|
29
|
+
|
|
30
|
+
// social media colors:
|
|
31
|
+
$facebook: #4267B2;
|
|
32
|
+
$youtube: #ff0000;
|
|
33
|
+
$ebay: #3665f3;
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
$grays: () !default;
|
|
37
|
+
// stylelint-disable-next-line scss/dollar-variable-default
|
|
38
|
+
$grays: map-merge(("100": $gray-100,
|
|
39
|
+
"200": $gray-200,
|
|
40
|
+
"300": $gray-300,
|
|
41
|
+
"400": $gray-400,
|
|
42
|
+
"500": $gray-500,
|
|
43
|
+
"600": $gray-600,
|
|
44
|
+
"700": $gray-700,
|
|
45
|
+
"800": $gray-800,
|
|
46
|
+
"900": $gray-900),
|
|
47
|
+
$grays);
|
|
48
|
+
|
|
49
|
+
$lightblue: #ccecff;
|
|
50
|
+
$vwblue: #0786ba;
|
|
51
|
+
$vwblue2: #00b1eb;
|
|
52
|
+
$blue: #0099da; //#0070B2; //#007bff !default;
|
|
53
|
+
$darkblue: #00437A;
|
|
54
|
+
$verydarkblue: #232737;
|
|
55
|
+
$indigo: #6610f2 !default;
|
|
56
|
+
$purple: #6f42c1 !default;
|
|
57
|
+
$pink: #e83e8c !default;
|
|
58
|
+
$red: #dc3545;//#e94e1b; //#dc3545 !default;
|
|
59
|
+
$orange: #ff5a00; //allegro//#f4831d; //#ff9700; // #fd7e14 !default;
|
|
60
|
+
$orange-darken: #e94d1a;
|
|
61
|
+
$yellow: #ffc107 !default;
|
|
62
|
+
$green: #28a745 !default;
|
|
63
|
+
$teal: #20c997 !default;
|
|
64
|
+
$cyan: #17a2b8 !default;
|
|
65
|
+
$grey: #797878 !default;
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
$primary: $blue; // $blue !default;
|
|
69
|
+
$secondary: $grey; //$gray-600; //$gray-600 !default;
|
|
70
|
+
$success: $green !default;
|
|
71
|
+
$info: $ebay;//$cyan !default;
|
|
72
|
+
$warning: $orange !default;
|
|
73
|
+
$danger: $red !default;
|
|
74
|
+
$light: $gray-100 !default;
|
|
75
|
+
$dark: $gray-900 !default;
|