Time is Money

Developer
Size
4,736 Kb
Views
36,432

How do I make an time is money?

My attempt at creating a Dribbble shot posted by Paul Flavius Nechita, in CSS and HTML. Check out the original - https://dribbble.com/shots/2271565-Day-095-Time-is-Money. What is a time is money? How do you make a time is money? This script and codes were developed by John Urbank on 08 July 2022, Friday.

Time is Money Previews

Time is Money - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Time is Money</title> <link href='https://fonts.googleapis.com/css?family=Questrial' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ body { background: #ebedf1; color: #fff; font-family: 'Open Sans', arial; font-family: 'Questrial', sans-serif;
}
.alpha { color: rgba(255, 255, 255, 0.4);
}
h1 { font-size: 25px; margin-bottom: 7%; line-height: 1.25em;
}
p { font-size: 11px; letter-spacing: 1px;
}
.subtitle { margin-bottom: 5px;
}
.subtitle-timer { margin-bottom: 6%;
}
.widget { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 55px 35px 35px 35px; margin: 0 auto; max-width: 640px; width: 80%; border-radius: 7px; background: #1870ed; box-shadow: 0 30px 50px 10px rgba(0, 0, 0, 0.25);
}
.widget-top-section { margin: 0 4.5%;
}
.widget-hamburger { height: 15px; width: 20px; margin-bottom: 10%;
}
.widget-hamburger-patty { width: 100%; height: 2px; background: rgba(255, 255, 255, 0.4); margin: 5px 0;
}
.timer { background: #080808; border-radius: 5.6px; padding: 6% 0; box-shadow: 0px 20px 70px 10px rgba(0, 0, 0, 0.7);
}
.timer-session { width: 82%; margin: 0 auto 1em;
}
.timer-session:after { content: ""; display: table; clear: both;
}
.timer-session-action { float: left; width: 20%;
}
.timer-session-pause { width: 25px; height: 15px; float: left;
}
.timer-session-pause:before, .timer-session-pause:after { content: ''; display: block; width: 3px; height: 100%; margin-right: 4px; float: left; background: rgba(255, 255, 255, 0.2);
}
.timer-session-stop { width: 15px; height: 15px; border-radius: 1px; float: left; background: rgba(255, 255, 255, 0.2);
}
.timer-session-ellipse { display: none;
}
.timer-session-log { float: right;
}
.timer-digits { text-align: center;
}
.timer-digit-group { display: inline-block; position: relative; width: 24%;
}
.timer-digit { position: relative; font-size: 50px; text-align: center; font-weight: bold; letter-spacing: .1em;
}
.timer-colon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); left: 99%; content: ":"; font-size: 20px; font-weight: 200; display: block; opacity: 0.4;
}
.timer-unit { margin-bottom: 15px;
}
@media (max-width: 420px) { body { background: #1870ed; } .widget { box-shadow: none; } .timer-digit { font-size: 25px; margin-bottom: .15em; } .timer-colon { font-size: 14px; } .timer-unit { font-size: 10px; }
}
@media (max-width: 360px) { .timer-digit-group { width: 35%; } .timer-colon { display: none; } .timer-session-pause, .timer-session-stop { display: none; } .timer-session-ellipse { display: block; font-size: 25px; line-height: 0; margin-top: -2%; letter-spacing: 3px; opacity: 0.4; }
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="widget"> <div class="widget-top-section"> <div class="widget-hamburger"> <div class="widget-hamburger-patty"></div> <div class="widget-hamburger-patty"></div> <div class="widget-hamburger-patty"></div> </div> <div class="nav"></div> <p class="subtitle alpha">PROJECT NAME</p> <h1>100 Days of UI Challenge</h1> <p class="subtitle-timer alpha">TOTAL TIME SPENT ON THE PROJECT</p> </div> <!-- TIMER PANEL --> <div class="timer"> <div class="timer-session"> <div class="timer-session-action"> <div class="timer-session-pause"></div> <div class="timer-session-stop"></div> <div class="timer-session-ellipse">...</div> </div> <div class="timer-session-log"> <p class="subtitle alpha">CURRENT SESSION 1:48:30</p> </div> </div> <div class="timer-tick"> <div class="timer-digits"> <div class="timer-digit-group"> <div class="timer-digit">11</div> <div class="timer-colon">:</div> <p class="timer-unit alpha">DAYS</p> </div> <div class="timer-digit-group"> <div class="timer-digit">21</div> <div class="timer-colon">:</div> <p class="timer-unit alpha">HOURS</p> </div> <div class="timer-digit-group"> <div class="timer-digit">24</div> <div class="timer-colon">:</div> <p class="timer-unit alpha">MINUTES</p> </div> <div class="timer-digit-group"> <div class="timer-digit">19</div> <p class="timer-unit alpha">SECONDS</p> </div> </div> </div> </div>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Time is Money - Script Codes CSS Codes

body { background: #ebedf1; color: #fff; font-family: 'Open Sans', arial; font-family: 'Questrial', sans-serif;
}
.alpha { color: rgba(255, 255, 255, 0.4);
}
h1 { font-size: 25px; margin-bottom: 7%; line-height: 1.25em;
}
p { font-size: 11px; letter-spacing: 1px;
}
.subtitle { margin-bottom: 5px;
}
.subtitle-timer { margin-bottom: 6%;
}
.widget { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 55px 35px 35px 35px; margin: 0 auto; max-width: 640px; width: 80%; border-radius: 7px; background: #1870ed; box-shadow: 0 30px 50px 10px rgba(0, 0, 0, 0.25);
}
.widget-top-section { margin: 0 4.5%;
}
.widget-hamburger { height: 15px; width: 20px; margin-bottom: 10%;
}
.widget-hamburger-patty { width: 100%; height: 2px; background: rgba(255, 255, 255, 0.4); margin: 5px 0;
}
.timer { background: #080808; border-radius: 5.6px; padding: 6% 0; box-shadow: 0px 20px 70px 10px rgba(0, 0, 0, 0.7);
}
.timer-session { width: 82%; margin: 0 auto 1em;
}
.timer-session:after { content: ""; display: table; clear: both;
}
.timer-session-action { float: left; width: 20%;
}
.timer-session-pause { width: 25px; height: 15px; float: left;
}
.timer-session-pause:before, .timer-session-pause:after { content: ''; display: block; width: 3px; height: 100%; margin-right: 4px; float: left; background: rgba(255, 255, 255, 0.2);
}
.timer-session-stop { width: 15px; height: 15px; border-radius: 1px; float: left; background: rgba(255, 255, 255, 0.2);
}
.timer-session-ellipse { display: none;
}
.timer-session-log { float: right;
}
.timer-digits { text-align: center;
}
.timer-digit-group { display: inline-block; position: relative; width: 24%;
}
.timer-digit { position: relative; font-size: 50px; text-align: center; font-weight: bold; letter-spacing: .1em;
}
.timer-colon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); left: 99%; content: ":"; font-size: 20px; font-weight: 200; display: block; opacity: 0.4;
}
.timer-unit { margin-bottom: 15px;
}
@media (max-width: 420px) { body { background: #1870ed; } .widget { box-shadow: none; } .timer-digit { font-size: 25px; margin-bottom: .15em; } .timer-colon { font-size: 14px; } .timer-unit { font-size: 10px; }
}
@media (max-width: 360px) { .timer-digit-group { width: 35%; } .timer-colon { display: none; } .timer-session-pause, .timer-session-stop { display: none; } .timer-session-ellipse { display: block; font-size: 25px; line-height: 0; margin-top: -2%; letter-spacing: 3px; opacity: 0.4; }
}
Time is Money - Script Codes
Time is Money - Script Codes
Home Page Home
Developer John Urbank
Username jurbank
Uploaded July 08, 2022
Rating 4.5
Size 4,736 Kb
Views 36,432
Do you need developer help for Time is Money?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

John Urbank (jurbank) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!