mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-18 05:17:53 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
57 lines
623 B
SCSS
57 lines
623 B
SCSS
@import "base/_splitcontainer.scss";
|
|
@import "base/_navigator.scss";
|
|
|
|
button
|
|
{
|
|
cursor: pointer;
|
|
}
|
|
|
|
IconPanel
|
|
{
|
|
font-family: Material Icons;
|
|
}
|
|
|
|
.is-half
|
|
{
|
|
width: 50%;
|
|
}
|
|
|
|
.is-third
|
|
{
|
|
width: 33%;
|
|
}
|
|
|
|
.is-quarter
|
|
{
|
|
width: 25%;
|
|
}
|
|
|
|
button.has-subtitle
|
|
{
|
|
position: relative;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
padding-left: 40px; // icon space
|
|
|
|
.iconpanel
|
|
{
|
|
position: absolute;
|
|
left: 5px;
|
|
top: 0;
|
|
bottom: 0;
|
|
align-items: center;
|
|
}
|
|
|
|
.button-label
|
|
{
|
|
font-weight: bold;
|
|
}
|
|
|
|
.button-subtitle
|
|
{
|
|
font-size: 12px;
|
|
opacity: 0.5;
|
|
mix-blend-mode: lighten;
|
|
}
|
|
} |