@paroicms/playground_demo2 0.75.1 → 0.76.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.
Files changed (29) hide show
  1. package/.turbo/turbo-build.log +2 -10
  2. package/CHANGELOG.md +21 -0
  3. package/package.json +23 -21
  4. package/postcss.config.js +9 -0
  5. package/site-schema.json +14 -1
  6. package/theme/assets/css/Breadcrumb.css +22 -0
  7. package/theme/assets/{scss/_ContactForm.scss → css/ContactForm.css} +13 -11
  8. package/theme/assets/css/Gallery.css +11 -0
  9. package/theme/assets/{scss/_HeaderBar.scss → css/HeaderBar.css} +29 -31
  10. package/theme/assets/css/HeroBanner.css +13 -0
  11. package/theme/assets/css/Paginate.css +7 -0
  12. package/theme/assets/{scss/_Part.scss → css/Part.css} +2 -3
  13. package/theme/assets/{scss/_ResultItem.scss → css/ResultItem.css} +1 -1
  14. package/theme/assets/{scss/_SiteFooter.scss → css/SiteFooter.css} +5 -5
  15. package/theme/assets/{scss/_Text.scss → css/Text.css} +20 -22
  16. package/theme/assets/{scss/_Tile.scss → css/Tile.css} +27 -27
  17. package/theme/assets/{scss/_global.scss → css/global.css} +1 -1
  18. package/theme/assets/css/index.css +15 -1
  19. package/theme/assets/{scss/_layout.scss → css/layout.css} +9 -13
  20. package/theme/assets/{scss/_reset.scss → css/reset.css} +6 -7
  21. package/theme/assets/css/tokens.css +61 -0
  22. package/theme/assets/index.css +1 -0
  23. package/theme/templates/layouts/main-layout.liquid +1 -1
  24. package/theme/assets/scss/_Breadcrumb.scss +0 -22
  25. package/theme/assets/scss/_Gallery.scss +0 -11
  26. package/theme/assets/scss/_HeroBanner.scss +0 -21
  27. package/theme/assets/scss/_Paginate.scss +0 -9
  28. package/theme/assets/scss/_constants.scss +0 -83
  29. package/theme/assets/scss/index.scss +0 -14
@@ -1,12 +1,4 @@
1
1
 
2
- > @paroicms/playground_demo2@0.75.1 build
3
- > npm run scss
4
-
5
-
6
- > @paroicms/playground_demo2@0.75.1 scss
7
- > npm run _scss -- --no-source-map --style=compressed
8
-
9
-
10
- > @paroicms/playground_demo2@0.75.1 _scss
11
- > sass theme/assets/scss/index.scss theme/assets/css/index.css --no-source-map --style=compressed
2
+ > @paroicms/playground_demo2@0.76.0 build
3
+ > postcss theme/assets/css/index.css -o theme/assets/index.css
12
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.76.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2f26720: New UI. Removed PrimeReact and SASS.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [2f26720]
12
+ - @paroicms/tiptap-editor-plugin@1.2.0
13
+ - @paroicms/quill-editor-plugin@1.47.0
14
+ - @paroicms/contact-form-plugin@0.33.12
15
+ - @paroicms/content-loading-plugin@0.27.13
16
+ - @paroicms/internal-link-plugin@0.23.10
17
+ - @paroicms/list-field-plugin@0.28.10
18
+ - @paroicms/mcp-plugin@0.2.4
19
+ - @paroicms/platform-video-plugin@0.37.11
20
+ - @paroicms/public-menu-plugin@0.19.13
21
+ - @paroicms/zoom-plugin@0.2.10
22
+ - @paroicms/script-lib@0.3.12
23
+
3
24
  ## 0.75.1
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo2",
3
- "version": "0.75.1",
3
+ "version": "0.76.0",
4
4
  "description": "Demonstration website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -15,32 +15,34 @@
15
15
  "scripts": {
16
16
  "start": "paroicms | npm run _pino-pretty",
17
17
  "start:dev": "nodemon --watch 'site-schema*.json' --watch config.json",
18
- "clear": "rimraf theme/assets/css/*",
19
- "build": "npm run scss",
20
- "dev": "concurrently -n 'node,scss' -c 'yellow.bold,magenta.bold' 'npm run start:dev' 'npm run scss:watch'",
21
- "scss": "npm run _scss -- --no-source-map --style=compressed",
22
- "scss:watch": "npm run _scss && npm run _scss -- --watch",
23
- "_scss": "sass theme/assets/scss/index.scss theme/assets/css/index.css",
18
+ "dev": "concurrently -n 'node,css' -c 'yellow.bold,magenta.bold' 'npm run start:dev' 'npm run css:watch'",
19
+ "build": "postcss theme/assets/css/index.css -o theme/assets/index.css",
20
+ "clear": "rimraf theme/assets/index.css",
21
+ "css:watch": "postcss theme/assets/css/index.css -o theme/assets/index.css --watch",
24
22
  "_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
25
23
  },
26
24
  "dependencies": {
27
- "@paroicms/contact-form-plugin": "0.33.11",
28
- "@paroicms/content-loading-plugin": "0.27.12",
29
- "@paroicms/internal-link-plugin": "0.23.9",
30
- "@paroicms/list-field-plugin": "0.28.9",
31
- "@paroicms/mcp-plugin": "0.2.3",
32
- "@paroicms/public-menu-plugin": "0.19.12",
33
- "@paroicms/tiptap-editor-plugin": "1.1.2",
34
- "@paroicms/quill-editor-plugin": "1.46.2",
35
- "@paroicms/script-lib": "0.3.11",
36
- "@paroicms/platform-video-plugin": "0.37.10",
37
- "@paroicms/zoom-plugin": "0.2.9"
25
+ "@paroicms/contact-form-plugin": "0.33.12",
26
+ "@paroicms/content-loading-plugin": "0.27.13",
27
+ "@paroicms/internal-link-plugin": "0.23.10",
28
+ "@paroicms/list-field-plugin": "0.28.10",
29
+ "@paroicms/mcp-plugin": "0.2.4",
30
+ "@paroicms/public-menu-plugin": "0.19.13",
31
+ "@paroicms/tiptap-editor-plugin": "1.2.0",
32
+ "@paroicms/quill-editor-plugin": "1.47.0",
33
+ "@paroicms/script-lib": "0.3.12",
34
+ "@paroicms/platform-video-plugin": "0.37.11",
35
+ "@paroicms/zoom-plugin": "0.2.10"
38
36
  },
39
37
  "devDependencies": {
40
38
  "concurrently": "~9.2.1",
39
+ "cssnano": "~7.1.2",
41
40
  "nodemon": "~3.1.11",
42
- "pino-pretty": "~13.1.2",
43
- "rimraf": "~6.1.2",
44
- "sass": "~1.94.2"
41
+ "pino-pretty": "~13.1.3",
42
+ "postcss": "~8.5.6",
43
+ "postcss-cli": "~11.0.1",
44
+ "postcss-import": "~16.1.1",
45
+ "postcss-nested": "~7.0.2",
46
+ "rimraf": "~6.1.2"
45
47
  }
46
48
  }
@@ -0,0 +1,9 @@
1
+ export default {
2
+ plugins: {
3
+ "postcss-import": {},
4
+ "postcss-nested": {},
5
+ cssnano: {
6
+ preset: "default",
7
+ },
8
+ },
9
+ };
package/site-schema.json CHANGED
@@ -203,7 +203,20 @@
203
203
  },
204
204
  "routingChildren": ["exhibition", "pages"],
205
205
  "regularChildren": ["page"],
206
- "regularChildrenSorting": "title asc"
206
+ "regularChildrenSorting": "title asc",
207
+ "lists": [
208
+ {
209
+ "listName": "partners",
210
+ "parts": ["partner"],
211
+ "sorting": "publishDate desc",
212
+ "limit": 5
213
+ },
214
+ {
215
+ "listName": "sections",
216
+ "parts": ["partner", "sideImage", "bookPage"],
217
+ "sorting": "manual"
218
+ }
219
+ ]
207
220
  },
208
221
  {
209
222
  "typeName": "posts",
@@ -0,0 +1,22 @@
1
+ .Breadcrumb {
2
+ display: flex;
3
+ align-items: center;
4
+ margin-bottom: 20px;
5
+ }
6
+
7
+ .Breadcrumb-imgIcon {
8
+ width: 24px;
9
+ height: 24px;
10
+ }
11
+
12
+ .Breadcrumb-span {
13
+ display: inline-block;
14
+ max-width: 300px;
15
+ overflow: hidden;
16
+ text-overflow: ellipsis;
17
+ white-space: nowrap;
18
+ }
19
+
20
+ .Breadcrumb-a {
21
+ color: #6c98e2 !important;
22
+ }
@@ -1,27 +1,29 @@
1
1
  .PaButton {
2
- background-color: #8bdda0;
3
- border: 2px solid #8bdda0;
4
- border-radius: 5px;
5
- color: #674002;
6
- cursor: pointer;
7
2
  display: inline-block;
3
+ padding: 10px 20px;
8
4
  font-size: 16px;
9
5
  font-weight: bold;
10
- padding: 10px 20px;
6
+ color: #674002;
11
7
  text-align: center;
12
8
  text-decoration: none;
13
- transition: background-color 0.3s, color 0.3s;
9
+ cursor: pointer;
10
+ background-color: #8bdda0;
11
+ border: 2px solid #8bdda0;
12
+ border-radius: 5px;
13
+ transition:
14
+ background-color 0.3s,
15
+ color 0.3s;
14
16
 
15
17
  &:focus,
16
18
  &:hover {
17
- background-color: #b77306;
18
19
  color: white;
20
+ background-color: #b77306;
19
21
  }
20
22
 
21
23
  &:disabled {
22
- background-color: #ccc;
23
- border-color: #aaa;
24
24
  color: #777;
25
25
  cursor: not-allowed;
26
+ background-color: #ccc;
27
+ border-color: #aaa;
26
28
  }
27
- }
29
+ }
@@ -0,0 +1,11 @@
1
+ .Gallery {
2
+ display: flex;
3
+ flex-wrap: wrap;
4
+ }
5
+
6
+ .Gallery-item {
7
+ width: 280px;
8
+ height: 150px;
9
+ margin: 10px;
10
+ object-fit: cover;
11
+ }
@@ -1,64 +1,62 @@
1
- @use "constants";
2
-
3
1
  .HeaderBar {
4
- align-items: center;
5
2
  display: flex;
3
+ align-items: center;
6
4
  justify-content: space-between;
7
5
  margin-bottom: 30px;
8
6
 
9
- &-logoTitle {
10
- align-items: center;
11
- display: flex;
12
- }
13
-
14
- &-siteLogo {
15
- margin-right: 10px;
16
- }
17
-
18
- &-siteTitle {
19
- font-size: 18px;
20
- font-weight: bold;
21
- }
22
-
23
7
  nav {
24
8
  ul {
25
9
  display: flex;
26
10
  }
27
11
 
28
12
  li {
29
- list-style: none;
30
13
  padding: 5px 10px;
14
+ list-style: none;
31
15
  }
32
16
 
33
- li>a {
17
+ li > a {
34
18
  text-decoration: none;
35
19
  }
36
20
  }
37
21
 
38
- @include constants.for-phone-and-tablet {
22
+ @media not all and (min-width: 992px) {
39
23
  nav li {
40
- list-style: none;
41
24
  margin-bottom: 10px;
25
+ list-style: none;
42
26
 
43
27
  a {
44
- align-items: center;
45
28
  display: flex;
29
+ align-items: center;
46
30
  height: 50px;
47
31
  text-decoration: none;
48
32
  }
49
33
  }
50
34
  }
51
35
 
52
- &>div:nth-last-child(1) {
53
- align-items: center;
36
+ & > div:nth-last-child(1) {
54
37
  display: flex;
38
+ align-items: center;
55
39
  }
40
+ }
56
41
 
57
- &-searchBtn {
58
- margin-right: 10px;
59
- }
42
+ .HeaderBar-logoTitle {
43
+ display: flex;
44
+ align-items: center;
45
+ }
60
46
 
61
- .SearchOpenerBtn {
62
- padding: 8px 10px;
63
- }
64
- }
47
+ .HeaderBar-siteLogo {
48
+ margin-right: 10px;
49
+ }
50
+
51
+ .HeaderBar-siteTitle {
52
+ font-size: 18px;
53
+ font-weight: bold;
54
+ }
55
+
56
+ .HeaderBar-searchBtn {
57
+ margin-right: 10px;
58
+ }
59
+
60
+ .HeaderBar .SearchOpenerBtn {
61
+ padding: 8px 10px;
62
+ }
@@ -0,0 +1,13 @@
1
+ .HeroBanner-img {
2
+ width: 100%;
3
+ height: 545px;
4
+ object-fit: cover;
5
+
6
+ @media not all and (min-width: 992px) {
7
+ height: 300px;
8
+ }
9
+
10
+ @media not all and (min-width: 640px) {
11
+ height: 200px;
12
+ }
13
+ }
@@ -0,0 +1,7 @@
1
+ .Paginate-left {
2
+ text-align: left;
3
+ }
4
+
5
+ .Paginate-next {
6
+ text-align: right;
7
+ }
@@ -2,7 +2,6 @@
2
2
  display: flex;
3
3
  flex-direction: column;
4
4
  margin-top: 20px;
5
-
6
5
  }
7
6
 
8
7
  .PartItem {
@@ -13,8 +12,8 @@
13
12
  }
14
13
 
15
14
  &.partner {
16
- margin-bottom: 20px;
17
15
  max-width: 300px;
16
+ margin-bottom: 20px;
18
17
 
19
18
  p {
20
19
  margin-top: 10px;
@@ -29,4 +28,4 @@
29
28
  margin-left: 10px;
30
29
  }
31
30
  }
32
- }
31
+ }
@@ -1,3 +1,3 @@
1
1
  .ResultItem {
2
2
  margin-bottom: 20px;
3
- }
3
+ }
@@ -1,11 +1,11 @@
1
1
  .SiteFooter {
2
- background-color: #FAFAFA;
3
- margin-top: 10px;
4
2
  padding: 15px 0;
3
+ margin-top: 10px;
5
4
  text-align: center;
5
+ background-color: #fafafa;
6
6
 
7
- &>span:nth-child(1) {
8
- font-weight: bold;
7
+ & > span:nth-child(1) {
9
8
  margin-right: 15px;
9
+ font-weight: bold;
10
10
  }
11
- }
11
+ }
@@ -1,10 +1,8 @@
1
- @use "constants";
2
-
3
1
  .Text {
4
2
  hyphens: auto;
5
3
  overflow-wrap: break-word;
6
4
 
7
- @include constants.for-phone {
5
+ @media not all and (min-width: 640px) {
8
6
  hyphens: auto;
9
7
  }
10
8
 
@@ -14,8 +12,8 @@
14
12
 
15
13
  &.selfContained::after {
16
14
  clear: both;
17
- content: "";
18
15
  display: block;
16
+ content: "";
19
17
  }
20
18
 
21
19
  a {
@@ -29,20 +27,20 @@
29
27
  h1,
30
28
  h2 {
31
29
  clear: both;
32
- font-size: constants.$f28;
33
- font-weight: bold;
34
30
  margin: 2rem 0;
31
+ font-size: var(--font-size-28);
32
+ font-weight: bold;
35
33
  }
36
34
 
37
35
  h3 {
38
- font-size: constants.$f18;
39
- font-weight: bold;
40
36
  margin: 1.5rem 0;
37
+ font-size: var(--font-size-18);
38
+ font-weight: bold;
41
39
  }
42
40
 
43
41
  h4,
44
42
  h5 {
45
- font-size: constants.$f16;
43
+ font-size: var(--font-size-16);
46
44
  font-weight: bold;
47
45
  }
48
46
 
@@ -57,8 +55,8 @@
57
55
  }
58
56
 
59
57
  blockquote {
60
- margin-left: 50px;
61
58
  margin-right: 20px;
59
+ margin-left: 50px;
62
60
  }
63
61
 
64
62
  ul,
@@ -90,27 +88,27 @@
90
88
 
91
89
  img,
92
90
  svg {
93
- height: auto;
94
91
  max-width: 100%;
92
+ height: auto;
95
93
  }
96
94
 
97
95
  .hljs {
98
- background-color: #f5f5f5;
99
- border-left: 15px solid #ddd;
100
- font-family: monospace;
101
- font-size: constants.$f14;
102
- line-height: 1.35;
96
+ padding: 10px 20px 10px 15px;
103
97
  margin: 20px 10px;
104
98
  overflow-x: auto;
105
- padding: 10px 20px 10px 15px;
99
+ font-family: monospace;
100
+ font-size: var(--font-size-14);
101
+ line-height: 1.35;
102
+ background-color: #f5f5f5;
103
+ border-left: 15px solid #ddd;
106
104
  }
107
105
 
108
106
  code {
107
+ padding: 1px 3px;
108
+ font-family: sans-serif;
109
+ font-size: var(--font-size-15);
110
+ color: #785454;
109
111
  background-color: #f5f5f5;
110
112
  border: 1px dotted #ccc;
111
- color: #785454;
112
- font-family: sans-serif;
113
- font-size: constants.$f15;
114
- padding: 1px 3px;
115
113
  }
116
- }
114
+ }
@@ -1,51 +1,51 @@
1
- @use "constants";
2
-
3
1
  .Tile {
4
2
  background-color: #f0f0f0;
5
3
 
6
- &-img {
7
- display: block;
8
- height: auto;
9
- object-fit: cover;
10
- width: 100%;
4
+ @media not all and (min-width: 640px) {
5
+ margin-bottom: 20px;
11
6
  }
7
+ }
12
8
 
13
- @include constants.for-phone {
14
- margin-bottom: 20px;
9
+ .Tile-img {
10
+ display: block;
11
+ width: 100%;
12
+ height: auto;
13
+ object-fit: cover;
14
+ }
15
15
 
16
- &-text {
17
- padding: 10px;
18
- }
16
+ .Tile-text {
17
+ @media not all and (min-width: 640px) {
18
+ padding: 10px;
19
19
  }
20
20
  }
21
21
 
22
22
  .Tile2 {
23
23
  background-color: #f0f0f0;
24
24
 
25
- &-img {
26
- display: block;
27
- height: auto;
28
- width: 100%;
25
+ @media not all and (min-width: 640px) {
26
+ margin-bottom: 20px;
29
27
  }
28
+ }
30
29
 
31
- &-text {
32
- padding: 10px;
33
- }
30
+ .Tile2-img {
31
+ display: block;
32
+ width: 100%;
33
+ height: auto;
34
+ }
34
35
 
35
- @include constants.for-phone {
36
- margin-bottom: 20px;
37
- }
36
+ .Tile2-text {
37
+ padding: 10px;
38
38
  }
39
39
 
40
40
  .Tile-tags {
41
41
  display: flex;
42
42
  flex-wrap: wrap;
43
43
 
44
- &>span {
44
+ & > span {
45
+ padding: 5px 10px;
46
+ margin-right: 5px;
47
+ margin-bottom: 10px;
45
48
  border: 1px solid #000;
46
49
  border-radius: 15px;
47
- margin-bottom: 10px;
48
- margin-right: 5px;
49
- padding: 5px 10px;
50
50
  }
51
- }
51
+ }
@@ -1,3 +1,3 @@
1
1
  :root {
2
2
  --paInteractiveColor: #99f;
3
- }
3
+ }
@@ -1 +1,15 @@
1
- html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,button{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}:root{--paInteractiveColor: #99f}.Container{margin-left:auto;margin-right:auto;max-width:1200px}.Container.text{max-width:700px}@media not all and (min-width: 640px){.Container{width:90%}}@media(min-width: 640px){.Container.pad{max-width:1240px;padding-left:20px;padding-right:20px}.Container.pad.text{max-width:740px}}@media(min-width: 640px){.Grid6,.Grid9,.Grid12{column-gap:25px;display:grid;row-gap:25px}.Grid6{grid-template-columns:repeat(6, 1fr)}.Grid9{grid-template-columns:repeat(9, 1fr)}.Grid12{grid-template-columns:repeat(12, 1fr)}.Span2{grid-column-end:span 2}.Span3{grid-column-end:span 3}.Span4{grid-column-end:span 4}.Span6{grid-column-end:span 6}.Span12{grid-column-end:span 12}.Column3{grid-column-start:3}.Column7{grid-column-start:7}@media not all and (min-width: 992px){.Span4Tablet{grid-column-end:span 4}}}.Text{hyphens:auto;overflow-wrap:break-word}@media not all and (min-width: 640px){.Text{hyphens:auto}}.Text.justified{text-align:justify}.Text.selfContained::after{clear:both;content:"";display:block}.Text a{text-decoration:underline}.Text a:hover{text-decoration:none}.Text h1,.Text h2{clear:both;font-size:1.75rem;font-weight:bold;margin:2rem 0}.Text h3{font-size:1.125rem;font-weight:bold;margin:1.5rem 0}.Text h4,.Text h5{font-size:1rem;font-weight:bold}.Text blockquote,.Text h4,.Text h5,.Text ol,.Text p,.Text table,.Text ul{margin-bottom:10px}.Text blockquote{margin-left:50px;margin-right:20px}.Text ul,.Text ol{margin-left:20px}.Text li{margin-bottom:5px}.Text ul{list-style:disc}.Text ol{list-style:decimal}.Text ul ul,.Text ol ul{list-style:circle}.Text ul ol,.Text ol ol{list-style:lower-alpha}.Text img,.Text svg{height:auto;max-width:100%}.Text .hljs{background-color:#f5f5f5;border-left:15px solid #ddd;font-family:monospace;font-size:.875rem;line-height:1.35;margin:20px 10px;overflow-x:auto;padding:10px 20px 10px 15px}.Text code{background-color:#f5f5f5;border:1px dotted #ccc;color:#785454;font-family:sans-serif;font-size:.9375rem;padding:1px 3px}.Breadcrumb{align-items:center;display:flex;margin-bottom:20px}.Breadcrumb-imgIcon{height:24px;width:24px}.Breadcrumb-span{display:inline-block;max-width:300px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Breadcrumb-a{color:#6c98e2 !important}.HeaderBar{align-items:center;display:flex;justify-content:space-between;margin-bottom:30px}.HeaderBar-logoTitle{align-items:center;display:flex}.HeaderBar-siteLogo{margin-right:10px}.HeaderBar-siteTitle{font-size:18px;font-weight:bold}.HeaderBar nav ul{display:flex}.HeaderBar nav li{list-style:none;padding:5px 10px}.HeaderBar nav li>a{text-decoration:none}@media not all and (min-width: 992px){.HeaderBar nav li{list-style:none;margin-bottom:10px}.HeaderBar nav li a{align-items:center;display:flex;height:50px;text-decoration:none}}.HeaderBar>div:nth-last-child(1){align-items:center;display:flex}.HeaderBar-searchBtn{margin-right:10px}.HeaderBar .SearchOpenerBtn{padding:8px 10px}.Tile{background-color:#f0f0f0}.Tile-img{display:block;height:auto;object-fit:cover;width:100%}@media not all and (min-width: 640px){.Tile{margin-bottom:20px}.Tile-text{padding:10px}}.Tile2{background-color:#f0f0f0}.Tile2-img{display:block;height:auto;width:100%}.Tile2-text{padding:10px}@media not all and (min-width: 640px){.Tile2{margin-bottom:20px}}.Tile-tags{display:flex;flex-wrap:wrap}.Tile-tags>span{border:1px solid #000;border-radius:15px;margin-bottom:10px;margin-right:5px;padding:5px 10px}.HeroBanner-img{height:545px;object-fit:cover;width:100%}@media not all and (min-width: 992px){.HeroBanner-img{height:300px}}@media not all and (min-width: 640px){.HeroBanner-img{height:200px}}.SiteFooter{background-color:#fafafa;margin-top:10px;padding:15px 0;text-align:center}.SiteFooter>span:nth-child(1){font-weight:bold;margin-right:15px}.ResultItem{margin-bottom:20px}.Paginate-left{text-align:left}.Paginate-next{text-align:right}.Gallery{display:flex;flex-wrap:wrap}.Gallery-item{height:150px;margin:10px;object-fit:cover;width:280px}.PaButton{background-color:#8bdda0;border:2px solid #8bdda0;border-radius:5px;color:#674002;cursor:pointer;display:inline-block;font-size:16px;font-weight:bold;padding:10px 20px;text-align:center;text-decoration:none;transition:background-color .3s,color .3s}.PaButton:focus,.PaButton:hover{background-color:#b77306;color:#fff}.PaButton:disabled{background-color:#ccc;border-color:#aaa;color:#777;cursor:not-allowed}.List{display:flex;flex-direction:column;margin-top:20px}.PartItem{margin:0 auto}.PartItem img{margin-bottom:10px}.PartItem.partner{margin-bottom:20px;max-width:300px}.PartItem.partner p{margin-top:10px}.PartItem.sideImage{display:flex;width:100%}.PartItem.sideImage p{margin-left:10px}
1
+ @import "./tokens.css";
2
+ @import "./reset.css";
3
+ @import "./global.css";
4
+ @import "./layout.css";
5
+ @import "./Text.css";
6
+ @import "./Breadcrumb.css";
7
+ @import "./HeaderBar.css";
8
+ @import "./Tile.css";
9
+ @import "./HeroBanner.css";
10
+ @import "./SiteFooter.css";
11
+ @import "./ResultItem.css";
12
+ @import "./Paginate.css";
13
+ @import "./Gallery.css";
14
+ @import "./ContactForm.css";
15
+ @import "./Part.css";
@@ -1,23 +1,21 @@
1
- @use "constants";
2
-
3
1
  .Container {
4
- margin-left: auto;
5
- margin-right: auto;
6
2
  max-width: 1200px;
3
+ margin-right: auto;
4
+ margin-left: auto;
7
5
 
8
6
  &.text {
9
7
  max-width: 700px;
10
8
  }
11
9
 
12
- @include constants.for-phone {
10
+ @media not all and (min-width: 640px) {
13
11
  width: 90%;
14
12
  }
15
13
 
16
- @include constants.for-tablet-up {
14
+ @media (min-width: 640px) {
17
15
  &.pad {
18
16
  max-width: 1240px;
19
- padding-left: 20px;
20
17
  padding-right: 20px;
18
+ padding-left: 20px;
21
19
  }
22
20
 
23
21
  &.pad.text {
@@ -26,14 +24,13 @@
26
24
  }
27
25
  }
28
26
 
29
- @include constants.for-tablet-up {
30
-
27
+ @media (min-width: 640px) {
31
28
  .Grid6,
32
29
  .Grid9,
33
30
  .Grid12 {
34
- column-gap: 25px;
35
31
  display: grid;
36
32
  row-gap: 25px;
33
+ column-gap: 25px;
37
34
  }
38
35
 
39
36
  .Grid6 {
@@ -76,10 +73,9 @@
76
73
  grid-column-start: 7;
77
74
  }
78
75
 
79
- @include constants.for-phone-and-tablet {
76
+ @media not all and (min-width: 992px) {
80
77
  .Span4Tablet {
81
78
  grid-column-end: span 4;
82
-
83
79
  }
84
80
  }
85
- }
81
+ }
@@ -1,4 +1,4 @@
1
- /* http://meyerweb.com/eric/tools/css/reset/
1
+ /* http://meyerweb.com/eric/tools/css/reset/
2
2
  v2.0 | 20110126
3
3
  License: none (public domain)
4
4
  */
@@ -85,12 +85,12 @@ mark,
85
85
  audio,
86
86
  video,
87
87
  button {
88
- margin: 0;
89
88
  padding: 0;
90
- border: 0;
91
- font-size: 100%;
89
+ margin: 0;
92
90
  font: inherit;
91
+ font-size: 100%;
93
92
  vertical-align: baseline;
93
+ border: 0;
94
94
  }
95
95
 
96
96
  /* HTML5 display-role reset for older browsers */
@@ -126,11 +126,10 @@ blockquote:before,
126
126
  blockquote:after,
127
127
  q:before,
128
128
  q:after {
129
- content: '';
130
129
  content: none;
131
130
  }
132
131
 
133
132
  table {
134
- border-collapse: collapse;
135
133
  border-spacing: 0;
136
- }
134
+ border-collapse: collapse;
135
+ }
@@ -0,0 +1,61 @@
1
+ :root {
2
+ --font-size-6: 0.375rem;
3
+ --font-size-7: 0.4375rem;
4
+ --font-size-8: 0.5rem;
5
+ --font-size-9: 0.5625rem;
6
+ --font-size-10: 0.625rem;
7
+ --font-size-11: 0.6875rem;
8
+ --font-size-12: 0.75rem;
9
+ --font-size-13: 0.8125rem;
10
+ --font-size-14: 0.875rem;
11
+ --font-size-15: 0.9375rem;
12
+ --font-size-16: 1rem;
13
+ --font-size-17: 1.0625rem;
14
+ --font-size-18: 1.125rem;
15
+ --font-size-19: 1.1875rem;
16
+ --font-size-20: 1.25rem;
17
+ --font-size-21: 1.3125rem;
18
+ --font-size-22: 1.375rem;
19
+ --font-size-23: 1.4375rem;
20
+ --font-size-24: 1.5rem;
21
+ --font-size-25: 1.5625rem;
22
+ --font-size-26: 1.625rem;
23
+ --font-size-27: 1.6875rem;
24
+ --font-size-28: 1.75rem;
25
+ --font-size-29: 1.8125rem;
26
+ --font-size-30: 1.875rem;
27
+ --font-size-31: 1.9375rem;
28
+ --font-size-32: 2rem;
29
+ --font-size-33: 2.0625rem;
30
+ --font-size-34: 2.125rem;
31
+ --font-size-35: 2.1875rem;
32
+ --font-size-36: 2.25rem;
33
+ --font-size-37: 2.3125rem;
34
+ --font-size-38: 2.375rem;
35
+ --font-size-39: 2.4375rem;
36
+ --font-size-40: 2.5rem;
37
+ --font-size-41: 2.5625rem;
38
+ --font-size-42: 2.625rem;
39
+ --font-size-43: 2.6875rem;
40
+ --font-size-44: 2.75rem;
41
+ --font-size-45: 2.8125rem;
42
+ --font-size-46: 2.875rem;
43
+ --font-size-47: 2.9375rem;
44
+ --font-size-48: 3rem;
45
+ --font-size-49: 3.0625rem;
46
+ --font-size-50: 3.125rem;
47
+ --font-size-51: 3.1875rem;
48
+ --font-size-52: 3.25rem;
49
+ --font-size-53: 3.3125rem;
50
+ --font-size-54: 3.375rem;
51
+ --font-size-55: 3.4375rem;
52
+ --font-size-56: 3.5rem;
53
+ --font-size-57: 3.5625rem;
54
+ --font-size-58: 3.625rem;
55
+ --font-size-59: 3.6875rem;
56
+ --font-size-60: 3.75rem;
57
+ --font-size-61: 3.8125rem;
58
+ --font-size-62: 3.875rem;
59
+ --font-size-63: 3.9375rem;
60
+ --font-size-64: 4rem;
61
+ }
@@ -0,0 +1 @@
1
+ :root{--font-size-6:0.375rem;--font-size-7:0.4375rem;--font-size-8:0.5rem;--font-size-9:0.5625rem;--font-size-10:0.625rem;--font-size-11:0.6875rem;--font-size-12:0.75rem;--font-size-13:0.8125rem;--font-size-14:0.875rem;--font-size-15:0.9375rem;--font-size-16:1rem;--font-size-17:1.0625rem;--font-size-18:1.125rem;--font-size-19:1.1875rem;--font-size-20:1.25rem;--font-size-21:1.3125rem;--font-size-22:1.375rem;--font-size-23:1.4375rem;--font-size-24:1.5rem;--font-size-25:1.5625rem;--font-size-26:1.625rem;--font-size-27:1.6875rem;--font-size-28:1.75rem;--font-size-29:1.8125rem;--font-size-30:1.875rem;--font-size-31:1.9375rem;--font-size-32:2rem;--font-size-33:2.0625rem;--font-size-34:2.125rem;--font-size-35:2.1875rem;--font-size-36:2.25rem;--font-size-37:2.3125rem;--font-size-38:2.375rem;--font-size-39:2.4375rem;--font-size-40:2.5rem;--font-size-41:2.5625rem;--font-size-42:2.625rem;--font-size-43:2.6875rem;--font-size-44:2.75rem;--font-size-45:2.8125rem;--font-size-46:2.875rem;--font-size-47:2.9375rem;--font-size-48:3rem;--font-size-49:3.0625rem;--font-size-50:3.125rem;--font-size-51:3.1875rem;--font-size-52:3.25rem;--font-size-53:3.3125rem;--font-size-54:3.375rem;--font-size-55:3.4375rem;--font-size-56:3.5rem;--font-size-57:3.5625rem;--font-size-58:3.625rem;--font-size-59:3.6875rem;--font-size-60:3.75rem;--font-size-61:3.8125rem;--font-size-62:3.875rem;--font-size-63:3.9375rem;--font-size-64:4rem}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,button,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{border:0;font:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:none}table{border-collapse:collapse;border-spacing:0}:root{--paInteractiveColor:#99f}.Container{margin-left:auto;margin-right:auto;max-width:1200px}.Container.text{max-width:700px}@media not all and (min-width:640px){.Container{width:90%}}@media (min-width:640px){.Container.pad{max-width:1240px;padding-left:20px;padding-right:20px}.Container.pad.text{max-width:740px}.Grid12,.Grid6,.Grid9{column-gap:25px;display:grid;row-gap:25px}.Grid6{grid-template-columns:repeat(6,1fr)}.Grid9{grid-template-columns:repeat(9,1fr)}.Grid12{grid-template-columns:repeat(12,1fr)}.Span2{grid-column-end:span 2}.Span3{grid-column-end:span 3}.Span4{grid-column-end:span 4}.Span6{grid-column-end:span 6}.Span12{grid-column-end:span 12}.Column3{grid-column-start:3}.Column7{grid-column-start:7}}@media (min-width:640px){@media not all and (min-width:992px){.Span4Tablet{grid-column-end:span 4}}}.Text{hyphens:auto;overflow-wrap:break-word}@media not all and (min-width:640px){.Text{hyphens:auto}}.Text.justified{text-align:justify}.Text.selfContained:after{clear:both;content:"";display:block}.Text a{text-decoration:underline}.Text a:hover{text-decoration:none}.Text h1,.Text h2{clear:both;font-size:var(--font-size-28);font-weight:700;margin:2rem 0}.Text h3{font-size:var(--font-size-18);font-weight:700;margin:1.5rem 0}.Text h4,.Text h5{font-size:var(--font-size-16);font-weight:700}.Text blockquote,.Text h4,.Text h5,.Text ol,.Text p,.Text table,.Text ul{margin-bottom:10px}.Text blockquote{margin-left:50px;margin-right:20px}.Text ol,.Text ul{margin-left:20px}.Text li{margin-bottom:5px}.Text ul{list-style:disc}.Text ol{list-style:decimal}.Text ol ul,.Text ul ul{list-style:circle}.Text ol ol,.Text ul ol{list-style:lower-alpha}.Text img,.Text svg{height:auto;max-width:100%}.Text .hljs{border-left:15px solid #ddd;font-family:monospace;font-size:var(--font-size-14);line-height:1.35;margin:20px 10px;overflow-x:auto;padding:10px 20px 10px 15px}.Text .hljs,.Text code{background-color:#f5f5f5}.Text code{border:1px dotted #ccc;color:#785454;font-family:sans-serif;font-size:var(--font-size-15);padding:1px 3px}.Breadcrumb{align-items:center;display:flex;margin-bottom:20px}.Breadcrumb-imgIcon{height:24px;width:24px}.Breadcrumb-span{display:inline-block;max-width:300px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Breadcrumb-a{color:#6c98e2!important}.HeaderBar{align-items:center;justify-content:space-between;margin-bottom:30px}.HeaderBar,.HeaderBar nav ul{display:flex}.HeaderBar nav li{list-style:none;padding:5px 10px}.HeaderBar nav li>a{text-decoration:none}@media not all and (min-width:992px){.HeaderBar nav li{list-style:none;margin-bottom:10px}.HeaderBar nav li a{align-items:center;display:flex;height:50px;text-decoration:none}}.HeaderBar-logoTitle,.HeaderBar>div:last-child{align-items:center;display:flex}.HeaderBar-siteLogo{margin-right:10px}.HeaderBar-siteTitle{font-size:18px;font-weight:700}.HeaderBar-searchBtn{margin-right:10px}.HeaderBar .SearchOpenerBtn{padding:8px 10px}.Tile{background-color:#f0f0f0}@media not all and (min-width:640px){.Tile{margin-bottom:20px}}.Tile-img{display:block;height:auto;object-fit:cover;width:100%}@media not all and (min-width:640px){.Tile-text{padding:10px}}.Tile2{background-color:#f0f0f0}@media not all and (min-width:640px){.Tile2{margin-bottom:20px}}.Tile2-img{display:block;height:auto;width:100%}.Tile2-text{padding:10px}.Tile-tags{display:flex;flex-wrap:wrap}.Tile-tags>span{border:1px solid #000;border-radius:15px;margin-bottom:10px;margin-right:5px;padding:5px 10px}.HeroBanner-img{height:545px;object-fit:cover;width:100%}@media not all and (min-width:992px){.HeroBanner-img{height:300px}}@media not all and (min-width:640px){.HeroBanner-img{height:200px}}.SiteFooter{background-color:#fafafa;margin-top:10px;padding:15px 0;text-align:center}.SiteFooter>span:first-child{font-weight:700;margin-right:15px}.ResultItem{margin-bottom:20px}.Paginate-left{text-align:left}.Paginate-next{text-align:right}.Gallery{display:flex;flex-wrap:wrap}.Gallery-item{height:150px;margin:10px;object-fit:cover;width:280px}.PaButton{background-color:#8bdda0;border:2px solid #8bdda0;border-radius:5px;color:#674002;cursor:pointer;display:inline-block;font-size:16px;font-weight:700;padding:10px 20px;text-align:center;text-decoration:none;transition:background-color .3s,color .3s}.PaButton:focus,.PaButton:hover{background-color:#b77306;color:#fff}.PaButton:disabled{background-color:#ccc;border-color:#aaa;color:#777;cursor:not-allowed}.List{display:flex;flex-direction:column;margin-top:20px}.PartItem{margin:0 auto}.PartItem img{margin-bottom:10px}.PartItem.partner{margin-bottom:20px;max-width:300px}.PartItem.partner p{margin-top:10px}.PartItem.sideImage{display:flex;width:100%}.PartItem.sideImage p{margin-left:10px}
@@ -8,7 +8,7 @@
8
8
  {%- endif %}
9
9
  {{ site.field.title }}
10
10
  </title>
11
- <link rel="stylesheet" href="{{ site.assetsUrl }}/css/index.css">
11
+ <link rel="stylesheet" href="{{ site.assetsUrl }}/index.css">
12
12
  <script type="module" src="{{ site.assetsUrl }}/js/main.mjs" defer></script>
13
13
  {{ doc | headTags }}
14
14
  </head>
@@ -1,22 +0,0 @@
1
- .Breadcrumb {
2
- align-items: center;
3
- display: flex;
4
- margin-bottom: 20px;
5
-
6
- &-imgIcon {
7
- height: 24px;
8
- width: 24px;
9
- }
10
-
11
- &-span {
12
- display: inline-block;
13
- max-width: 300px;
14
- overflow: hidden;
15
- text-overflow: ellipsis;
16
- white-space: nowrap;
17
- }
18
-
19
- &-a {
20
- color: #6c98e2 !important;
21
- }
22
- }
@@ -1,11 +0,0 @@
1
- .Gallery {
2
- display: flex;
3
- flex-wrap: wrap;
4
-
5
- &-item {
6
- height: 150px;
7
- margin: 10px;
8
- object-fit: cover;
9
- width: 280px;
10
- }
11
- }
@@ -1,21 +0,0 @@
1
- @use "constants";
2
-
3
- .HeroBanner {
4
- &-img {
5
- height: 545px;
6
- object-fit: cover;
7
- width: 100%;
8
- }
9
-
10
- @include constants.for-phone-and-tablet {
11
- &-img {
12
- height: 300px;
13
- }
14
- }
15
-
16
- @include constants.for-phone {
17
- &-img {
18
- height: 200px;
19
- }
20
- }
21
- }
@@ -1,9 +0,0 @@
1
- .Paginate {
2
- &-left {
3
- text-align: left;
4
- }
5
-
6
- &-next {
7
- text-align: right;
8
- }
9
- }
@@ -1,83 +0,0 @@
1
- @mixin for-phone {
2
- @media not all and (min-width: 640px) {
3
- @content;
4
- }
5
- }
6
-
7
- @mixin for-tablet-up {
8
- @media (min-width: 640px) {
9
- @content;
10
- }
11
- }
12
-
13
- @mixin for-phone-and-tablet {
14
- @media not all and (min-width: 992px) {
15
- @content;
16
- }
17
- }
18
-
19
- @mixin for-desktop {
20
- @media (min-width: 992px) {
21
- @content;
22
- }
23
- }
24
-
25
- $f6: 0.375rem;
26
- $f7: 0.4375rem;
27
- $f8: 0.5rem;
28
- $f9: 0.5625rem;
29
- $f10: 0.625rem;
30
- $f11: 0.6875rem;
31
- $f12: 0.75rem;
32
- $f13: 0.8125rem;
33
- $f14: 0.875rem;
34
- $f15: 0.9375rem;
35
- $f16: 1rem;
36
- $f17: 1.0625rem;
37
- $f18: 1.125rem;
38
- $f19: 1.1875rem;
39
- $f20: 1.25rem;
40
- $f21: 1.3125rem;
41
- $f22: 1.375rem;
42
- $f23: 1.4375rem;
43
- $f24: 1.5rem;
44
- $f25: 1.5625rem;
45
- $f26: 1.625rem;
46
- $f27: 1.6875rem;
47
- $f28: 1.75rem;
48
- $f29: 1.8125rem;
49
- $f30: 1.875rem;
50
- $f31: 1.9375rem;
51
- $f32: 2rem;
52
- $f33: 2.0625rem;
53
- $f34: 2.125rem;
54
- $f35: 2.1875rem;
55
- $f36: 2.25rem;
56
- $f37: 2.3125rem;
57
- $f38: 2.375rem;
58
- $f39: 2.4375rem;
59
- $f40: 2.5rem;
60
- $f41: 2.5625rem;
61
- $f42: 2.625rem;
62
- $f43: 2.6875rem;
63
- $f44: 2.75rem;
64
- $f45: 2.8125rem;
65
- $f46: 2.875rem;
66
- $f47: 2.9375rem;
67
- $f48: 3rem;
68
- $f49: 3.0625rem;
69
- $f50: 3.125rem;
70
- $f51: 3.1875rem;
71
- $f52: 3.25rem;
72
- $f53: 3.3125rem;
73
- $f54: 3.375rem;
74
- $f55: 3.4375rem;
75
- $f56: 3.5rem;
76
- $f57: 3.5625rem;
77
- $f58: 3.625rem;
78
- $f59: 3.6875rem;
79
- $f60: 3.75rem;
80
- $f61: 3.8125rem;
81
- $f62: 3.875rem;
82
- $f63: 3.9375rem;
83
- $f64: 4rem;
@@ -1,14 +0,0 @@
1
- @use "reset";
2
- @use "global";
3
- @use "layout";
4
- @use "Text";
5
- @use "Breadcrumb";
6
- @use "HeaderBar";
7
- @use "Tile";
8
- @use "HeroBanner";
9
- @use "SiteFooter";
10
- @use "ResultItem";
11
- @use "Paginate";
12
- @use "Gallery";
13
- @use "ContactForm";
14
- @use "Part"