mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
8bf3ee4f65
Summary: Don't seem to be core Test Plan: Reran celerity Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5641
26 lines
408 B
CSS
26 lines
408 B
CSS
/**
|
|
* @provides aphront-notes
|
|
*/
|
|
|
|
div.aphront-note {
|
|
margin: 1em;
|
|
background: #ffc;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
div.aphront-note div.title {
|
|
margin: 0;
|
|
padding: 0.2em 0.5em 0.2em;
|
|
background: #ffd;
|
|
border-bottom: 1px solid #ccc;
|
|
color: #888;
|
|
font-size: smaller;
|
|
}
|
|
|
|
div.aphront-note div.inner {
|
|
overflow: auto;
|
|
padding: 0.5em;
|
|
max-height: 25em;
|
|
color: #333;
|
|
font-size: smaller;
|
|
}
|