├── .node-version
├── src
├── scss
│ ├── global
│ │ ├── _index.scss
│ │ └── _variable.scss
│ ├── style.scss
│ ├── foundation
│ │ ├── _index.scss
│ │ ├── _common.scss
│ │ └── _normalize.scss
│ └── component
│ │ ├── _about.scss
│ │ ├── _cover.scss
│ │ ├── _index.scss
│ │ ├── _store.scss
│ │ ├── _nav-share.scss
│ │ ├── _section.scss
│ │ ├── _embeddedPlayer.scss
│ │ ├── _track-table.scss
│ │ ├── _container.scss
│ │ ├── _organization.scss
│ │ ├── _gallery.scss
│ │ ├── _button.scss
│ │ ├── _member.scss
│ │ ├── _overview.scss
│ │ ├── _setup.scss
│ │ ├── _prebuild-banner.scss
│ │ └── _footer.scss
├── templates
│ ├── _partial
│ │ ├── _footer.ejs
│ │ ├── _header.ejs
│ │ └── _logo.ejs
│ └── pages
│ │ ├── index.ejs
│ │ └── preview.ejs
└── js
│ ├── index
│ ├── index.js
│ └── vanilla-tilt.min.js
│ ├── i18n
│ └── i18n-language.js
│ └── preview
│ ├── csv.min.js
│ └── preview.js
├── tokusetsu4.code-workspace
├── bs-config.js
├── README.md
├── LICENSE
├── package.json
└── .gitignore
/.node-version:
--------------------------------------------------------------------------------
1 | v16.16.0
2 |
--------------------------------------------------------------------------------
/src/scss/global/_index.scss:
--------------------------------------------------------------------------------
1 | @forward '_variable';
2 |
--------------------------------------------------------------------------------
/src/scss/style.scss:
--------------------------------------------------------------------------------
1 | @use 'foundation';
2 | @use 'component';
3 |
--------------------------------------------------------------------------------
/src/scss/foundation/_index.scss:
--------------------------------------------------------------------------------
1 | @forward '_normalize';
2 | @forward '_common';
3 |
--------------------------------------------------------------------------------
/tokusetsu4.code-workspace:
--------------------------------------------------------------------------------
1 | {
2 | "folders": [
3 | {
4 | "path": "."
5 | }
6 | ]
7 | }
8 |
--------------------------------------------------------------------------------
/src/scss/component/_about.scss:
--------------------------------------------------------------------------------
1 | @use "../global" as g;
2 |
3 | .about-content {
4 |
5 | .about {
6 | margin: 0;
7 | &:not(:first-child) {
8 | margin-top: var(--space-4);
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/templates/_partial/_footer.ejs:
--------------------------------------------------------------------------------
1 | <% if (pageId === 'preview') { %>
2 |
3 |
4 | <% } %>
5 |
6 |