mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 23:32:40 +01:00
43430e154d
Summary: - Old page was useless and dumb. - New page looks a little less bad, functions a little less poorly. - Still lots of work to be done. Test Plan: - Viewed a project. - Clicked all the links on the left nav. - Here is a screenshot: https://secure.phabricator.com/file/view/PHID-FILE-4buzquotb3fo4dhlicrw/ Reviewers: btrahan, jungejason Reviewed By: jungejason CC: aran, jungejason Maniphest Tasks: T681 Differential Revision: 1246
32 lines
603 B
CSS
32 lines
603 B
CSS
/**
|
|
* @provides phabricator-profile-header-css
|
|
*/
|
|
|
|
.phabricator-profile-header {
|
|
background: #efefef;
|
|
width: 100%;
|
|
border-bottom: 1px solid #cccccc;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-name {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
padding: 12px 12px 6px;
|
|
width: 100%;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-picture-frame {
|
|
margin: 11px;
|
|
width: 50px;
|
|
height: 50px;
|
|
position: relative;
|
|
|
|
background: no-repeat;
|
|
border: 1px solid #ffffff;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-description {
|
|
padding: 0 12px 12px;
|
|
color: #444444;
|
|
font-size: 11px;
|
|
}
|