diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0db36bb..2a31956 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,4 +5,4 @@ Thanks for your interest in I Do OSS! If you'd like to contribute, please keep t ## Pull Requests 1. Be detailed about the change you've made. Include screenshots or video where helpful. 2. If you're open to critical feedback, say so. -3. Put an emoji in your pull request -- or find a different way to share kindness and humanity in an otherwise bleack and emotionless technical landscape. +3. Put an emoji in your pull request -- or find a different way to share kindness and humanity in an otherwise bleak and emotionless technical landscape. diff --git a/public/css/new_example.css b/public/css/new_example.css new file mode 100644 index 0000000..1f12344 --- /dev/null +++ b/public/css/new_example.css @@ -0,0 +1,17 @@ +/* Pale green gradient */ + body { + background: #f8ffe8; /* Old browsers */ + background: -moz-linear-gradient(top, #f8ffe8 0%, #e3f5ab 33%, #b7df2d 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%); /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ +} +​ +div.text { +padding: 1em; + +background-color: white; +} + +p { + color: magenta; +}