mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
0e5cd478c4
Summary: Should make it simpler here to have more `rgba` rules in CSS for things like hovers, selected states. Maybe only use `rgb` colors? Color pallette probably needs an overhaul. Test Plan: Bounce around random pages, buttons, menus. Everything appears normal. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15273
21 lines
329 B
CSS
21 lines
329 B
CSS
/**
|
|
* @provides global-drag-and-drop-css
|
|
*/
|
|
|
|
.phabricator-global-upload-instructions {
|
|
text-align: center;
|
|
position: fixed;
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
|
|
margin: 0 10%;
|
|
width: 80%;
|
|
left: 0;
|
|
top: 30%;
|
|
padding: 18px 0;
|
|
|
|
color: #ffffff;
|
|
background: rgba({$alphablack}, 0.8);
|
|
border-radius: 18px;
|
|
|
|
}
|