From 595c244ee103ff528361d3f8db9b74493fb4c3bf Mon Sep 17 00:00:00 2001 From: Jacob Rosenzweig Date: Thu, 11 Mar 2021 11:37:08 -0800 Subject: [PATCH 1/2] init --- content/docs/styling.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/docs/styling.md diff --git a/content/docs/styling.md b/content/docs/styling.md new file mode 100644 index 0000000..c4f1192 --- /dev/null +++ b/content/docs/styling.md @@ -0,0 +1,10 @@ ++++ +title = "Styling" +weight = 1 ++++ + +# Introduction + +Lorem Ipsum... + + From bf76cdc6eb0b87a450ddbf069e2e16cb87347320 Mon Sep 17 00:00:00 2001 From: Jacob Rosenzweig Date: Thu, 11 Mar 2021 11:50:41 -0800 Subject: [PATCH 2/2] Finished up basic introduction --- content/docs/styling.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/docs/styling.md b/content/docs/styling.md index c4f1192..0382560 100644 --- a/content/docs/styling.md +++ b/content/docs/styling.md @@ -5,6 +5,4 @@ weight = 1 # Introduction -Lorem Ipsum... - - +`Iced` is a Rust GUI framework which targets a variety of platforms: `Web`, `Windows`, `MacOSX` and `Linux`. While each target has its own approach to rendering, the layout and styling model should be agnostic to the platform itself. `Iced`, being heavily influenced by the `Elm` language, incorporates many of the common patterns seen in HTML and CSS. This includes the declarative nature of HTML itself with the concept of `Element` and styling rules, some synonymous with CSS (e.g. `padding` and `background_color`). However, there are caveats. `CSS` is a standard that has evolved for over 24 years and it has adapted by making design decisions that are not necessarily consistent(I don't know how to say this nicely???). This page will discuss the `Iced` styling standard and how it differs from traditional `CSS`.