mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
7aeefc0cca
Summary: Mostly this is an exercise to clean up our CSS and Celerity processor by making sure all important color decisions are generatable. It's somewhat resonable to use if you don't review code. Posting it up here mostly so I don't lose the work. Test Plan: Visit lots and lots of pages with dark mode on and off. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18227
17 lines
307 B
CSS
17 lines
307 B
CSS
/**
|
|
* @provides people-picture-menu-item-css
|
|
*/
|
|
|
|
.people-menu-image {
|
|
width: 160px;
|
|
height: 160px;
|
|
}
|
|
|
|
.people-menu-image-container {
|
|
background: {$page.content};
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
border: 1px solid rgba({$alphablue},.2);
|
|
margin: 4px 0px 16px 20px;
|
|
display: inline-block;
|
|
}
|