Skip to content

Instantly share code, notes, and snippets.

@gabalafou
gabalafou / test.md
Created March 9, 2020 09:39 — forked from EpokK/test.md
FE Test: Modern Website

FE Test: Modern Website

Design

From this design, create a website using a static site generator like Gatsby or Next. Apply the appropriate CSS style to respect the design. Supporting responsive is optional.

Once done, upload your project on GitHub or GitLab. Then email back the git repository URL or zip the project to the person who sent the task.

Notes

@gabalafou
gabalafou / usage.js
Created December 1, 2015 20:54 — forked from jasonfarrell/usage.js
Checks if a DOM element is visible. Takes into consideration its parents and overflow.
var my_element = document.getElementById('my-element');
//-- Returns true/false
my_element.isVisible(my_element);