Skip to content

Commit 727fbfa

Browse files
changes in CSS
1 parent 0276c4d commit 727fbfa

29 files changed

+1340
-24
lines changed

.docusaurus/DONT-EDIT-THIS-FOLDER

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
This folder stores temp files that Docusaurus' client bundler accesses.
2+
3+
DO NOT hand-modify files in this folder because they will be overwritten in the
4+
next build. You can clear all build artifacts (including this folder) with the
5+
`docusaurus clear` command.

.docusaurus/client-modules.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default [
2+
require("/home/adi/website/node_modules/infima/dist/css/default/default.css"),
3+
require("/home/adi/website/node_modules/@docusaurus/theme-classic/lib/prism-include-languages"),
4+
require("/home/adi/website/node_modules/@docusaurus/theme-classic/lib/nprogress"),
5+
require("/home/adi/website/src/css/custom.css"),
6+
];

.docusaurus/codeTranslations.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"title": "Recent posts",
3+
"items": []
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"blogBasePath": "/blog",
3+
"blogTitle": "Blog"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "docusaurus-plugin-content-blog",
3+
"id": "default"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"title": "Tutorial - Basics",
3+
"description": "Beginner friendly tutuorial for Chess",
4+
"slug": "/category/tutorial---basics",
5+
"permalink": "/docs/category/tutorial---basics",
6+
"navigation": {
7+
"next": {
8+
"title": "Introduction to Chess",
9+
"permalink": "/docs/Beginner/introducton-to-chess"
10+
}
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "docusaurus-plugin-content-docs",
3+
"id": "default"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"id": "Beginner/introducton-to-chess",
3+
"title": "Introduction to Chess",
4+
"description": "Chess is a timeless board game that has captured the hearts and minds of people around the world for centuries. In this section, we'll explore the basics of chess, its rich history, and the numerous benefits it offers to players of all ages.",
5+
"source": "@site/docs/Beginner/0-introducton-to-chess.md",
6+
"sourceDirName": "Beginner",
7+
"slug": "/Beginner/introducton-to-chess",
8+
"permalink": "/docs/Beginner/introducton-to-chess",
9+
"draft": false,
10+
"unlisted": false,
11+
"editUrl": "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/Beginner/0-introducton-to-chess.md",
12+
"tags": [],
13+
"version": "current",
14+
"sidebarPosition": 0,
15+
"frontMatter": {},
16+
"sidebar": "tutorialSidebar",
17+
"previous": {
18+
"title": "Tutorial - Basics",
19+
"permalink": "/docs/category/tutorial---basics"
20+
},
21+
"next": {
22+
"title": "Getting Started",
23+
"permalink": "/docs/Beginner/getting-started"
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"id": "Beginner/getting-started",
3+
"title": "Getting Started",
4+
"description": "Welcome to the exciting world of chess! In this section, we'll cover everything you need to know to get started playing the game, from setting up the chessboard to understanding the basic rules.",
5+
"source": "@site/docs/Beginner/1-getting-started.md",
6+
"sourceDirName": "Beginner",
7+
"slug": "/Beginner/getting-started",
8+
"permalink": "/docs/Beginner/getting-started",
9+
"draft": false,
10+
"unlisted": false,
11+
"editUrl": "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/Beginner/1-getting-started.md",
12+
"tags": [],
13+
"version": "current",
14+
"sidebarPosition": 1,
15+
"frontMatter": {},
16+
"sidebar": "tutorialSidebar",
17+
"previous": {
18+
"title": "Introduction to Chess",
19+
"permalink": "/docs/Beginner/introducton-to-chess"
20+
},
21+
"next": {
22+
"title": "Basic Strategies",
23+
"permalink": "/docs/Beginner/basic-stratagies"
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"id": "Beginner/basic-stratagies",
3+
"title": "Basic Strategies",
4+
"description": "Welcome to the Basic Strategies section! Understanding these fundamental concepts will lay a solid foundation for your journey to becoming a proficient chess player.",
5+
"source": "@site/docs/Beginner/2-basic-stratagies.md",
6+
"sourceDirName": "Beginner",
7+
"slug": "/Beginner/basic-stratagies",
8+
"permalink": "/docs/Beginner/basic-stratagies",
9+
"draft": false,
10+
"unlisted": false,
11+
"editUrl": "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/Beginner/2-basic-stratagies.md",
12+
"tags": [],
13+
"version": "current",
14+
"sidebarPosition": 2,
15+
"frontMatter": {},
16+
"sidebar": "tutorialSidebar",
17+
"previous": {
18+
"title": "Getting Started",
19+
"permalink": "/docs/Beginner/getting-started"
20+
},
21+
"next": {
22+
"title": "Tactics for Beginners",
23+
"permalink": "/docs/Beginner/tactics-for-beginners"
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"id": "Beginner/tactics-for-beginners",
3+
"title": "Tactics for Beginners",
4+
"description": "Welcome to the Tactics for Beginners section! Tactical skills are essential for success in chess, and mastering these fundamental tactics will greatly improve your game. Let's dive into some key tactical concepts that every beginner should know.",
5+
"source": "@site/docs/Beginner/3-tactics-for-beginners.md",
6+
"sourceDirName": "Beginner",
7+
"slug": "/Beginner/tactics-for-beginners",
8+
"permalink": "/docs/Beginner/tactics-for-beginners",
9+
"draft": false,
10+
"unlisted": false,
11+
"editUrl": "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/Beginner/3-tactics-for-beginners.md",
12+
"tags": [],
13+
"version": "current",
14+
"sidebarPosition": 3,
15+
"frontMatter": {},
16+
"sidebar": "tutorialSidebar",
17+
"previous": {
18+
"title": "Basic Strategies",
19+
"permalink": "/docs/Beginner/basic-stratagies"
20+
},
21+
"next": {
22+
"title": "hi",
23+
"permalink": "/docs/Intermediate/hi"
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"id": "Intermediate/hi",
3+
"title": "hi",
4+
"description": "",
5+
"source": "@site/docs/Intermediate/hi.md",
6+
"sourceDirName": "Intermediate",
7+
"slug": "/Intermediate/hi",
8+
"permalink": "/docs/Intermediate/hi",
9+
"draft": false,
10+
"unlisted": false,
11+
"editUrl": "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/Intermediate/hi.md",
12+
"tags": [],
13+
"version": "current",
14+
"frontMatter": {},
15+
"sidebar": "tutorialSidebar",
16+
"previous": {
17+
"title": "Tactics for Beginners",
18+
"permalink": "/docs/Beginner/tactics-for-beginners"
19+
},
20+
"next": {
21+
"title": "Welcome to Chesslore!",
22+
"permalink": "/docs/intro"
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"id": "intro",
3+
"title": "Welcome to Chesslore!",
4+
"description": "Welcome to Chesslore, your ultimate destination for all things related to the timeless game of chess. Whether you're a beginner looking to learn the basics or an experienced player seeking advanced strategies, you've come to the right place.",
5+
"source": "@site/docs/intro.md",
6+
"sourceDirName": ".",
7+
"slug": "/intro",
8+
"permalink": "/docs/intro",
9+
"draft": false,
10+
"unlisted": false,
11+
"editUrl": "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/intro.md",
12+
"tags": [],
13+
"version": "current",
14+
"frontMatter": {},
15+
"sidebar": "tutorialSidebar",
16+
"previous": {
17+
"title": "hi",
18+
"permalink": "/docs/Intermediate/hi"
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
{
2+
"pluginId": "default",
3+
"version": "current",
4+
"label": "Next",
5+
"banner": null,
6+
"badge": false,
7+
"noIndex": false,
8+
"className": "docs-version-current",
9+
"isLast": true,
10+
"docsSidebars": {
11+
"tutorialSidebar": [
12+
{
13+
"type": "category",
14+
"label": "Tutorial - Basics",
15+
"collapsible": true,
16+
"collapsed": true,
17+
"items": [
18+
{
19+
"type": "link",
20+
"label": "Introduction to Chess",
21+
"href": "/docs/Beginner/introducton-to-chess",
22+
"docId": "Beginner/introducton-to-chess",
23+
"unlisted": false
24+
},
25+
{
26+
"type": "link",
27+
"label": "Getting Started",
28+
"href": "/docs/Beginner/getting-started",
29+
"docId": "Beginner/getting-started",
30+
"unlisted": false
31+
},
32+
{
33+
"type": "link",
34+
"label": "Basic Strategies",
35+
"href": "/docs/Beginner/basic-stratagies",
36+
"docId": "Beginner/basic-stratagies",
37+
"unlisted": false
38+
},
39+
{
40+
"type": "link",
41+
"label": "Tactics for Beginners",
42+
"href": "/docs/Beginner/tactics-for-beginners",
43+
"docId": "Beginner/tactics-for-beginners",
44+
"unlisted": false
45+
}
46+
],
47+
"href": "/docs/category/tutorial---basics"
48+
},
49+
{
50+
"type": "category",
51+
"label": "Intermediate",
52+
"collapsible": true,
53+
"collapsed": true,
54+
"items": [
55+
{
56+
"type": "link",
57+
"label": "hi",
58+
"href": "/docs/Intermediate/hi",
59+
"docId": "Intermediate/hi",
60+
"unlisted": false
61+
}
62+
]
63+
},
64+
{
65+
"type": "link",
66+
"label": "Welcome to Chesslore!",
67+
"href": "/docs/intro",
68+
"docId": "intro",
69+
"unlisted": false
70+
}
71+
]
72+
},
73+
"docs": {
74+
"Beginner/basic-stratagies": {
75+
"id": "Beginner/basic-stratagies",
76+
"title": "Basic Strategies",
77+
"description": "Welcome to the Basic Strategies section! Understanding these fundamental concepts will lay a solid foundation for your journey to becoming a proficient chess player.",
78+
"sidebar": "tutorialSidebar"
79+
},
80+
"Beginner/getting-started": {
81+
"id": "Beginner/getting-started",
82+
"title": "Getting Started",
83+
"description": "Welcome to the exciting world of chess! In this section, we'll cover everything you need to know to get started playing the game, from setting up the chessboard to understanding the basic rules.",
84+
"sidebar": "tutorialSidebar"
85+
},
86+
"Beginner/introducton-to-chess": {
87+
"id": "Beginner/introducton-to-chess",
88+
"title": "Introduction to Chess",
89+
"description": "Chess is a timeless board game that has captured the hearts and minds of people around the world for centuries. In this section, we'll explore the basics of chess, its rich history, and the numerous benefits it offers to players of all ages.",
90+
"sidebar": "tutorialSidebar"
91+
},
92+
"Beginner/tactics-for-beginners": {
93+
"id": "Beginner/tactics-for-beginners",
94+
"title": "Tactics for Beginners",
95+
"description": "Welcome to the Tactics for Beginners section! Tactical skills are essential for success in chess, and mastering these fundamental tactics will greatly improve your game. Let's dive into some key tactical concepts that every beginner should know.",
96+
"sidebar": "tutorialSidebar"
97+
},
98+
"Intermediate/hi": {
99+
"id": "Intermediate/hi",
100+
"title": "hi",
101+
"description": "",
102+
"sidebar": "tutorialSidebar"
103+
},
104+
"intro": {
105+
"id": "intro",
106+
"title": "Welcome to Chesslore!",
107+
"description": "Welcome to Chesslore, your ultimate destination for all things related to the timeless game of chess. Whether you're a beginner looking to learn the basics or an experienced player seeking advanced strategies, you've come to the right place.",
108+
"sidebar": "tutorialSidebar"
109+
}
110+
}
111+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "docusaurus-plugin-content-pages",
3+
"id": "default"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"type": "mdx",
3+
"permalink": "/markdown-page",
4+
"source": "@site/src/pages/markdown-page.md",
5+
"title": "Markdown page example",
6+
"description": "You don't need React to write simple standalone pages.",
7+
"frontMatter": {
8+
"title": "Markdown page example"
9+
},
10+
"unlisted": false
11+
}

0 commit comments

Comments
 (0)