Skip to content

reddy-epk/Timer-app

Repository files navigation

Building a Digital Timer App

Refer to the image below:


digital timer output

Design Files

Click to view

Set Up Instructions

Click to view
  • Download dependencies by running npm install
  • Start up the app using npm start
Implementation Files

Use these files to complete the implementation:

  • src/components/DigitalTimer/index.js
  • src/components/DigitalTimer/index.css

Quick Tips

Click to view
  • Use the box-shadow CSS property to apply the box-shadow effect to containers

      box-shadow: 0px 4px 16px 0px #bfbfbf;
    

    box shadow
  • Use Math.floor() function that returns the largest integer less than or equal to a given number

    console.log(Math.floor(5.95)); // output: 5
  • Use the background-position CSS property to set the starting position of a background image

    background-position: center;
    

Resources

Image URLs
Colors
Hex: #ffffff
Hex: #cffcf1
Hex: #1e293b
Hex: #0f172a
Hex: #defafe
Hex: #00d9f5
Font-families
  • Roboto

Things not_to change

  • All components you implement should go in the src/components directory.
  • Don't change the component folder names as those are the files being imported into the tests.