Files
blockly/packages/docs/docs/codelabs/css/setup.mdx
T
Maribeth Moffatt 00cacc4d6f chore: fix some problems with docs site (#9928)
* update api-documenter versions and patch

* fix: update sidebar generation

* fix: docusaurus config changes

* fix: remove unnecessary slugs

* chore: fix url redirects with md suffix
2026-05-22 15:45:09 -04:00

40 lines
1.3 KiB
Plaintext

---
title: Use CSS in Blockly - Setup
description: Setup for the CSS in Blockly codelab
---
# Use CSS in Blockly
## 2. Setup
### Download the sample code
You can get the sample code for this code by either downloading the zip here:
[Download zip](https://github.com/RaspberryPiFoundation/blockly/archive/main.zip)
or by cloning this git repo:
```bash
git clone https://github.com/RaspberryPiFoundation/blockly.git
```
If you downloaded the source as a zip, unpacking it should give you a root folder named `blockly-main`.
The relevant files are in `docs/docs/codelabs/css`. There are two versions of the app:
- `starter-code/`: The starter code that you'll build upon in this codelab.
- `complete-code/`: The code after completing the codelab, in case you get lost or want to compare to your version.
Each folder contains:
- `index.html` - A web page containing a simple Blockly workspace.
- `toolbox.js` - A toolbox with multiple categories.
- `index.js` - Code to inject a simple workspace.
The `complete-code` folder also contains the `halloween.css` file you'll create.
To run the code, simply open `starter-code/index.html` in a browser. You should see a Blockly workspace with multiple categories.
![A web page with the text 'CSS Codelab' and a Blockly editor with seven categories.](../../../static/images/codelabs/css/setup-starter.png)