diff --git a/features/features.json b/features/features.json index a21ea9dd..edc5614f 100644 --- a/features/features.json +++ b/features/features.json @@ -1,4 +1,9 @@ [ + { + "version": 2, + "id": "hide-footer", + "versionAdded": "v3.0.0" + }, { "version": 2, "id": "original-colors", diff --git a/features/hide-footer/data.json b/features/hide-footer/data.json new file mode 100644 index 00000000..8e556b11 --- /dev/null +++ b/features/hide-footer/data.json @@ -0,0 +1,17 @@ +{ + "title": "Hide Footer", + "description": "The footer takes up a lot of unnecessary space. So hide it!", + "credits": [ + { "username": "stio_studio", "url": "https://scratch.mit.edu/users/stio_studio/" } + ], + "type": ["Website"], + "tags": ["New", "Featured"], + "styles": [ + { + "file": "style.css", + "runOn": "/*" + } + ], + "dynamic": true +} + diff --git a/features/hide-footer/style.css b/features/hide-footer/style.css new file mode 100644 index 00000000..015878d6 --- /dev/null +++ b/features/hide-footer/style.css @@ -0,0 +1,6 @@ +#footer, #donor { + display: none; +} +#content { + padding-bottom: 0px; +} \ No newline at end of file