DailyUI #003 – Landing Page (CodePen)

DailyUI Challenge #003 – a landing page for my bear puppy Coconut.

Font:
– Raleway

Color Scheme:
– #604A4C – the shade of brown
– #F6E7CB – page background color
– #F4D1AE – shade of tan for bottom left blob
– #A7ABDD – shade of…


This content originally appeared on DEV Community and was authored by annie.exe

DailyUI Challenge #003 - a landing page for my bear puppy Coconut.

Font:
- Raleway

Color Scheme:
- #604A4C - the shade of brown
- #F6E7CB - page background color
- #F4D1AE - shade of tan for bottom left blob
- #A7ABDD - shade of purple for top left blob
- #708D81 - shade of green for bottom right blob
- #00272B - dark colored text

The color blobs are made on Figma, exported as SVGs, and uploaded to a GitHub Gist.

Then in the CSS for .landingpage:

  1. Set the background color
  2. Set the background image with the 3 gist URLs
  3. Set the size for how big you want each blob to be
  4. Set the position of where you want each blob to be placed.
  5. We want no repeat and no overflow.
background-color: #f6e7cb;
background-image: url("https://gist.githubusercontent.com/anniedotexe/8ab1f7baa078c8024144e232dc3e6763/raw/913759318c00a3110706509c566e9da5335dfa3c/purple-blob.svg"),
        url("https://gist.githubusercontent.com/anniedotexe/8ab1f7baa078c8024144e232dc3e6763/raw/913759318c00a3110706509c566e9da5335dfa3c/tan-blob.svg"),
        url("https://gist.githubusercontent.com/anniedotexe/8ab1f7baa078c8024144e232dc3e6763/raw/913759318c00a3110706509c566e9da5335dfa3c/green-blob.svg");
background-size: 35%, 48%, 11%;
background-position: right top, left bottom, right bottom;
background-repeat: no-repeat;
overflow: hidden;


This content originally appeared on DEV Community and was authored by annie.exe


Print Share Comment Cite Upload Translate Updates
APA

annie.exe | Sciencx (2021-08-13T22:48:57+00:00) DailyUI #003 – Landing Page (CodePen). Retrieved from https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/

MLA
" » DailyUI #003 – Landing Page (CodePen)." annie.exe | Sciencx - Friday August 13, 2021, https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/
HARVARD
annie.exe | Sciencx Friday August 13, 2021 » DailyUI #003 – Landing Page (CodePen)., viewed ,<https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/>
VANCOUVER
annie.exe | Sciencx - » DailyUI #003 – Landing Page (CodePen). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/
CHICAGO
" » DailyUI #003 – Landing Page (CodePen)." annie.exe | Sciencx - Accessed . https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/
IEEE
" » DailyUI #003 – Landing Page (CodePen)." annie.exe | Sciencx [Online]. Available: https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/. [Accessed: ]
rf:citation
» DailyUI #003 – Landing Page (CodePen) | annie.exe | Sciencx | https://www.scien.cx/2021/08/13/dailyui-003-landing-page-codepen/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.