mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
ebc3811bed
Summary: Adds the launch date, normalize spacing a bit. Test Plan: Test a normal and embeded countdowns. {F670199} Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13740
76 lines
1.4 KiB
CSS
76 lines
1.4 KiB
CSS
/**
|
|
* @provides phabricator-countdown-css
|
|
*/
|
|
|
|
.phabricator-timer {
|
|
margin: 16px 16px 0 16px;
|
|
border: 1px solid {$lightblueborder};
|
|
border-radius: 3px;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.device-phone .phabricator-timer {
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.phabricator-remarkup .phabricator-timer {
|
|
width: 360px;
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
.device-phone .phabricator-remarkup .phabricator-timer {
|
|
width: auto;
|
|
}
|
|
|
|
.phabricator-timer-header {
|
|
font-weight: bold;
|
|
padding: 8px;
|
|
background: {$bluebackground};
|
|
border-radius: 3px 3px 0 0;
|
|
}
|
|
|
|
.phabricator-timer-header a {
|
|
color: {$darkbluetext};
|
|
font-weight: normal;
|
|
}
|
|
|
|
.phabricator-timer-table {
|
|
width: 100%;
|
|
margin: 8px 0 0 0;
|
|
}
|
|
|
|
.phabricator-timer-table th {
|
|
text-align: center;
|
|
font-size: {$biggerfontsize};
|
|
color: {$bluetext};
|
|
width: 10%;
|
|
padding: 4px;
|
|
}
|
|
|
|
.phabricator-timer-table td {
|
|
padding: 4px;
|
|
text-align: center;
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
overflow: hidden;
|
|
line-height: auto;
|
|
height: auto;
|
|
line-height: 44px;
|
|
}
|
|
|
|
.phabricator-timer-table td.phabricator-timer-foot {
|
|
font-size: {$normalfontsize};
|
|
line-height: 16px;
|
|
border-top: 1px solid {$thinblueborder};
|
|
color: {$bluetext};
|
|
font-weight: normal;
|
|
padding: 8px;
|
|
border-bottom-right-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
text-align: center;
|
|
}
|
|
|
|
.phabricator-timer-table small {
|
|
color: {$lightgreytext};
|
|
}
|