diff --git a/README.md b/README.md index 0a79299d4..8e5017ef3 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ All of our documentation is on our [website](https://www.greenwoodjs.io/) (which - Component Model - Styes and Assets -## Contritbuting +## Contributing We would love your contribution to Greenwood! Please check out our issue tracker for "good first issue" label or feel to reach out to us on Gitter in the room "Greenwood" or on [Twitter](https://twitter.com/PrjEvergreen). ## License diff --git a/packages/cli/templates/theme.css b/packages/cli/templates/theme.css index d6fa769e8..bba6a237d 100644 --- a/packages/cli/templates/theme.css +++ b/packages/cli/templates/theme.css @@ -53,7 +53,7 @@ img { } & a { - color: #006400; + color: #1d337a; } } @@ -77,4 +77,4 @@ img { "footer footer"; } } -} \ No newline at end of file +} diff --git a/www/components/banner/banner.css b/www/components/banner/banner.css index cec1c8890..503a1f28b 100644 --- a/www/components/banner/banner.css +++ b/www/components/banner/banner.css @@ -22,8 +22,8 @@ grid-area: banner; & .banner { - background-color: rgba(238, 231, 235); - min-height: 50vh; + background-color: #F6F2F4; + min-height: 60vh; & .content { padding: 5vh 10px; @@ -81,4 +81,4 @@ } } } -} \ No newline at end of file +} diff --git a/www/components/banner/banner.js b/www/components/banner/banner.js index 1900ee57f..ac53606c1 100644 --- a/www/components/banner/banner.js +++ b/www/components/banner/banner.js @@ -49,14 +49,14 @@ class Banner extends LitElement { - +
@@ -42,4 +42,4 @@ class HeaderComponent extends LitElement { } } -customElements.define('eve-header', HeaderComponent); \ No newline at end of file +customElements.define('eve-header', HeaderComponent); diff --git a/www/components/row/row.css b/www/components/row/row.css index 548d30f4c..cb5db0d29 100644 --- a/www/components/row/row.css +++ b/www/components/row/row.css @@ -6,11 +6,8 @@ display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; - /* -ms-flex-flow: row wrap; - flex-flow: row wrap; */ -webkit-box-pack: justify; -ms-flex-pack: justify; - /* justify-content: center; */ justify-content: space-around; flex-direction: row; diff --git a/www/components/shelf/shelf.css b/www/components/shelf/shelf.css index 39238ef29..efc9a07e8 100644 --- a/www/components/shelf/shelf.css +++ b/www/components/shelf/shelf.css @@ -8,7 +8,7 @@ & a { text-decoration: none; - color: green; + color: #2D3D3A; &:hover { color:black; @@ -56,6 +56,9 @@ margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; + & a { + cursor: pointer; + } } @media (max-width: 768px) { padding-left:10px; @@ -76,4 +79,4 @@ & .active { color:red; } -} \ No newline at end of file +} diff --git a/www/pages/docs/configuration.md b/www/pages/docs/configuration.md index f30bc81a7..9c7821914 100644 --- a/www/pages/docs/configuration.md +++ b/www/pages/docs/configuration.md @@ -32,7 +32,7 @@ module.exports = { ### Meta -You can use the `meta` option for the configuration of [`` tags](https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML) within the `` tag of the generated _index.html_ file. This is epecially useful for providing text and images for social sharing and link previews like for Slack, text messages, and social media shares, in particular when using the [Open Graph](https://ogp.me/) set of tags. +You can use the `meta` option for the configuration of [`` tags](https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML) within the `` tag of the generated _index.html_ file. This is especially useful for providing text and images for social sharing and link previews like for Slack, text messages, and social media shares, in particular when using the [Open Graph](https://ogp.me/) set of tags. #### Example This is an example of the `meta` configuration for the Greenwood website. @@ -96,7 +96,7 @@ module.exports = { ``` ### Workspace -Workspace path for your project where all your project files will be located. You can change it by passing a string. Using an absolute path is recommened. +Workspace path for your project where all your project files will be located. You can change it by passing a string. Using an absolute path is recommended. #### Example ```render js diff --git a/www/pages/docs/css-and-images.md b/www/pages/docs/css-and-images.md index 1354fe82f..b3abd392a 100644 --- a/www/pages/docs/css-and-images.md +++ b/www/pages/docs/css-and-images.md @@ -9,7 +9,7 @@ By default Greenwood supports directory detection for the following folder names ### Theming -To enable theming through global styles, create a file in your workspace styles directoy called _theme.css_, e.g. _src/styles/theme.css_ and import it into your page templates. Greenwood will include this in a `