mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
7621376aab
Summary: Allows setting on an image here if wanted. Test Plan: Set a rocket to launch a new instance on rSAAS Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18334
44 lines
668 B
CSS
44 lines
668 B
CSS
/**
|
|
* @provides phui-big-info-view-css
|
|
*/
|
|
|
|
.phui-big-info-view {
|
|
padding: 64px 32px;
|
|
margin: 16px 4px;
|
|
background-color: {$page.sidenav};
|
|
text-align: center;
|
|
}
|
|
|
|
.phui-big-info-icon {
|
|
font-size: 48px;
|
|
}
|
|
|
|
.phui-big-info-title {
|
|
font-size: 18px;
|
|
padding: 4px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phui-big-info-description {
|
|
font-size: {$biggerfontsize};
|
|
padding: 4px;
|
|
}
|
|
|
|
.phui-big-info-actions {
|
|
padding: 24px 0 0;
|
|
}
|
|
|
|
.phui-big-info-button {
|
|
display: inline-block;
|
|
}
|
|
|
|
.phui-big-info-button + .phui-big-info-button {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.phui-big-info-view .phui-big-info-image {
|
|
height: 64px;
|
|
width: 64px;
|
|
margin: 0 auto;
|
|
padding-bottom: 12px;
|
|
}
|