From ae049159ddd7b7d82589d7dcdc3b95b10543d4e6 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 21 Apr 2020 14:31:11 -0400 Subject: [PATCH 1/5] Remove unnecessary --- writer/customize.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/writer/customize.md b/writer/customize.md index ec5d444..4555f85 100644 --- a/writer/customize.md +++ b/writer/customize.md @@ -2,8 +2,6 @@ If you can write CSS, you can customize the appearance of your WriteFreely blog. - - ## Getting Started All you need to do is go to the _Customize_ settings of your blog. Scroll down to "Custom CSS" and customize your blog from there. From 43ad9aa69ea5fbf961f193cf98497c181659759a Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 21 Apr 2020 14:31:49 -0400 Subject: [PATCH 2/5] Fix CSS syntax highlighting --- writer/customize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writer/customize.md b/writer/customize.md index 4555f85..027ee10 100644 --- a/writer/customize.md +++ b/writer/customize.md @@ -10,7 +10,7 @@ The following stylesheet shows a few basic selectors you'll need in order to cus You should copy entire sections in the RECIPES section verbatim, as each is a complete customization you might want to make, like centering an image. -```CSS +```css /* BASICS From 7be57d6096d99aff0ac145823ead36e7d5847dbe Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 21 Apr 2020 14:36:28 -0400 Subject: [PATCH 3/5] Break up BASICS and RECIPES in customize guide This also removes redundant backticks for inline codes. --- writer/customize.md | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/writer/customize.md b/writer/customize.md index 027ee10..28fb9da 100644 --- a/writer/customize.md +++ b/writer/customize.md @@ -6,18 +6,10 @@ If you can write CSS, you can customize the appearance of your WriteFreely blog. All you need to do is go to the _Customize_ settings of your blog. Scroll down to "Custom CSS" and customize your blog from there. -The following stylesheet shows a few basic selectors you'll need in order to customize certain elements. In the BASICS section, just grab the selectors (e.g. ```#blog-title a:hover```) for your stylesheet — the properties are only there to illustrate what you can do. - -You should copy entire sections in the RECIPES section verbatim, as each is a complete customization you might want to make, like centering an image. +The following stylesheet shows a few basic selectors you'll need in order to customize certain elements. You can just grab the selectors (e.g. `#blog-title a`) for your stylesheet — the properties are only there to illustrate what you can do. ```css -/* - - BASICS - Use the following CSS rules to change the elements you're trying to customize. - -*/ - +/* Entire page background */ body { background-color: #efefef; } @@ -66,14 +58,11 @@ article p a:hover { color: white; text-decoration: none; } +``` -/* - - RECIPES - These are common patterns you may want to use on your blog. - -*/ +Copy these entire sections verbatim, as each is a complete customization you might want to make, like centering an image. +```css /* Center images */ img { display: block; From 43a79e4ea041ff6fde9909b48777c141306b0323 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 21 Apr 2020 14:37:15 -0400 Subject: [PATCH 4/5] Replace & with and on customize guide --- writer/customize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writer/customize.md b/writer/customize.md index 28fb9da..68adf92 100644 --- a/writer/customize.md +++ b/writer/customize.md @@ -86,4 +86,4 @@ header nav .views { ## Themes -If you want to see how you can customize beyond the basic elements of your blog, you can check out our [Themes blog](https://write.as/themes). Here, you can find custom blogs from the WriteFreely/Write.as community whose themes you can use & remix for your own blog. +If you want to see how you can customize beyond the basic elements of your blog, you can check out our [Themes blog](https://write.as/themes). Here you can find custom blogs from the WriteFreely/Write.as community whose themes you can use and remix for your own blog. From 3267490e5927f31f7b4345a191cdd5ba372c9122 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 21 Apr 2020 14:37:43 -0400 Subject: [PATCH 5/5] Rename customize.md to css.md --- writer/{customize.md => css.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename writer/{customize.md => css.md} (100%) diff --git a/writer/customize.md b/writer/css.md similarity index 100% rename from writer/customize.md rename to writer/css.md