summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--website/.gitignore7
-rw-r--r--website/config.toml20
-rw-r--r--website/input.css54
-rw-r--r--website/justfile5
-rw-r--r--website/package.json7
5 files changed, 93 insertions, 0 deletions
diff --git a/website/.gitignore b/website/.gitignore
new file mode 100644
index 0000000..648e077
--- /dev/null
+++ b/website/.gitignore
@@ -0,0 +1,7 @@
+/node_modules/
+/package-lock.json
+
+/public/
+
+/static/main.css
+/static/processed_images/
diff --git a/website/config.toml b/website/config.toml
new file mode 100644
index 0000000..d23b331
--- /dev/null
+++ b/website/config.toml
@@ -0,0 +1,20 @@
+base_url = "https://rust-lang.github.io/rustlings"
+title = "Rustlings"
+description = "Small exercises to get you used to reading and writing Rust code!"
+
+compile_sass = false
+build_search_index = false
+
+[markdown]
+highlight_code = true
+
+[[extra.menu_items]]
+name = "Home"
+url = "/"
+[[extra.menu_items]]
+name = "Custom Exercises"
+url = "/custom-exercises"
+
+[[extra.footer_items]]
+name = "Repository"
+url = "https://github.com/rust-lang/rustlings"
diff --git a/website/input.css b/website/input.css
new file mode 100644
index 0000000..b26d9ba
--- /dev/null
+++ b/website/input.css
@@ -0,0 +1,54 @@
+@import 'tailwindcss';
+
+@layer base {
+ h1 {
+ @apply text-4xl mt-3 mb-3 text-gray-50 font-bold;
+ }
+ h2 {
+ @apply text-3xl mt-4 mb-1.5 text-gray-50 font-bold;
+ }
+ h3 {
+ @apply text-2xl mt-5 mb-1.5 text-gray-50 font-bold;
+ }
+ h4 {
+ @apply text-xl mt-6 mb-1.5 text-gray-50 font-bold;
+ }
+ p {
+ @apply mb-2;
+ }
+ a {
+ @apply text-[#F74C00] underline hover:decoration-orange-400 transition duration-300;
+ }
+ ul {
+ @apply mt-2 mb-3 ml-1 list-disc list-inside marker:text-sky-600;
+ }
+ ol {
+ @apply mt-2 mb-3 ml-1 list-decimal list-inside marker:text-sky-500;
+ }
+ li {
+ @apply my-0.5;
+ }
+ code {
+ @apply bg-white/10 px-1 pb-px pt-1 rounded-md;
+ }
+ pre code {
+ @apply bg-inherit p-0 text-inherit;
+ }
+ hr {
+ @apply my-5 rounded-full;
+ }
+ img {
+ @apply max-w-full w-full h-full mx-auto my-5 object-contain md:w-3/4 lg:w-3/5 rounded-sm shadow-sm;
+ }
+ blockquote {
+ @apply p-4 my-3 border-s-4 border-gray-300 bg-gray-800 italic;
+ }
+
+ pre {
+ @apply px-2 pt-2 pb-px overflow-x-auto text-sm sm:text-base rounded-sm mt-2 mb-4 after:content-[attr(data-lang)] after:text-[8px] after:opacity-40 selection:bg-gray-500/75;
+ }
+ pre code mark {
+ @apply pb-0.5 pt-1 pr-px text-inherit rounded-xs;
+ }
+}
+
diff --git a/website/justfile b/website/justfile
new file mode 100644
index 0000000..5c9c677
--- /dev/null
+++ b/website/justfile
@@ -0,0 +1,5 @@
+zola:
+ zola serve --open
+
+tailwind:
+ fnm exec --using latest npx @tailwindcss/cli -i input.css -o static/main.css
diff --git a/website/package.json b/website/package.json
new file mode 100644
index 0000000..ee8a1c8
--- /dev/null
+++ b/website/package.json
@@ -0,0 +1,7 @@
+{
+ "devDependencies": {
+ "rustywind": "^0.24",
+ "tailwindcss": "^4.1",
+ "@tailwindcss/cli": "^4.1"
+ }
+}