mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
26f7425ee2
Summary: Allow skins to serve arbitrary resources without needing to be mapped, so we can have a vibrant community of amateur skinners. For "basic" skins, just put all the "css/" on the page always. Includes an image to prove that works. @vrana, pretty sure this has no impact outside of Phame but it does change Celerity so it might be to blame if there's any weirdness with static resources. Test Plan: {F21341} {F21340} Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1373 Differential Revision: https://secure.phabricator.com/D3719
77 lines
1,005 B
CSS
77 lines
1,005 B
CSS
html, body, p, h1, h2, h3 {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-weight: normal;
|
|
}
|
|
|
|
html {
|
|
font-family: "Helvetica Neue", "Arial", sans-serif;
|
|
font-size: 16px;
|
|
overflow-y: scroll;
|
|
color: #555555;
|
|
}
|
|
|
|
.oblivious-info {
|
|
position: fixed;
|
|
width: 15%;
|
|
border-right: 1px solid #dfdfdf;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 140px 2% 0;
|
|
overflow: hidden;
|
|
|
|
background: url(/image/badge.png);
|
|
background-repeat: no-repeat;
|
|
background-position: 20px 20px;
|
|
}
|
|
|
|
.oblivious-content {
|
|
padding-top: 3%;
|
|
margin-left: 22%;
|
|
max-width: 600px;
|
|
}
|
|
|
|
a {
|
|
color: #222222;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #a00000;
|
|
}
|
|
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phame-post {
|
|
margin: 0 0 2em;
|
|
}
|
|
|
|
.phame-post-date {
|
|
font-size: 12px;
|
|
margin: .25em 0 1em;
|
|
}
|
|
|
|
.phame-post {
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
.phame-post p {
|
|
margin: 0 0 1em;
|
|
}
|
|
|
|
|
|
.fb-comments,
|
|
.fb-comments span,
|
|
.fb-comments iframe[style] {
|
|
width: 100% !important;
|
|
}
|