mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-04 03:41:01 +01:00
a11b5e8bbc
Summary: Addon that allows you to create a live countdown page to some event. Here is the ticket that this code is based on https://secure.phabricator.com/T36 Test Plan: Tested by manually setting dates in the timer.js file and checking if they made sense. I'm not sure if it works across different timezones though. Reviewers: epriestley CC: Differential Revision: 436
40 lines
578 B
CSS
40 lines
578 B
CSS
/**
|
|
* @provides phabricator-countdown-css
|
|
*/
|
|
|
|
.phabricator-timer {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
margin-top: 2em;
|
|
margin-bottom: 2em;
|
|
background: #efefef;
|
|
border-top: 1px solid #cccccc;
|
|
}
|
|
|
|
.phabricator-timer-header {
|
|
padding: 8px;
|
|
background: #dfdfdf;
|
|
}
|
|
|
|
.phabricator-timer-pane {
|
|
padding: 8px 2em;
|
|
}
|
|
|
|
.phabricator-timer-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.phabricator-timer-table th {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: #666666;
|
|
width: 10%;
|
|
padding: 4px;
|
|
}
|
|
|
|
.phabricator-timer-table td {
|
|
padding: 4px;
|
|
text-align: center;
|
|
font-size: 4em;
|
|
}
|
|
|