mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
fef3e074d8
Summary: Moves lighter grey text to a common color. Test Plan: sandbox, review diff Reviewers: epriestley, btrahan, mutech.aka Reviewed By: mutech.aka CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6859
51 lines
873 B
CSS
51 lines
873 B
CSS
/**
|
|
* @provides phabricator-countdown-css
|
|
*/
|
|
|
|
.phabricator-timer {
|
|
width: 90%;
|
|
margin: 12px auto;
|
|
border: 1px solid {$greytext};
|
|
border-radius: 4px;
|
|
background: #ffffff;
|
|
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.phabricator-remarkup .phabricator-timer {
|
|
width: 300px;
|
|
}
|
|
|
|
.phabricator-timer-header {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
padding: 4px 8px;
|
|
background: #f0f0f0;
|
|
border-radius: 4px 4px 0 0;
|
|
border-bottom: 1px solid #d7d7d7;
|
|
}
|
|
|
|
.phabricator-timer-table {
|
|
width: 100%;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.phabricator-timer-table th {
|
|
text-align: center;
|
|
color: {$greytext};
|
|
width: 10%;
|
|
padding: 4px;
|
|
}
|
|
|
|
.phabricator-timer-table td {
|
|
padding: 4px;
|
|
text-align: center;
|
|
font-size: 36px;
|
|
overflow: hidden;
|
|
line-height: auto;
|
|
height: auto;
|
|
line-height: 36px;
|
|
}
|
|
|
|
.phabricator-timer-table small {
|
|
color: {$lightgreytext};
|
|
}
|