| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- @import 'layout_variable';
- // FIXME: replace with mt-2 or mt-3
- .grw-mt-10px {
- margin-top: 10px !important;
- }
- // FIXME: replace with pt-2 or pt-3
- .grw-pt-10px {
- padding-top: 10px !important;
- }
- .main-container {
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: 500;
- }
- .navbar-top-links {
- height: 30px;
- border-radius: 40px;
- .confidential {
- a {
- font-weight: bold;
- cursor: default;
- }
- }
- }
- /*
- * header
- */
- header {
- line-height: 1em;
- h1 {
- @include variable-font-size(28px);
- line-height: 1.1em;
- }
- // affix
- &.affix {
- top: 0;
- left: 0;
- z-index: 15; // over the .sidebar
- width: 100%;
- padding: 2px 20px;
- box-shadow: 0 0px 2px #999;
- h1 {
- @include variable-font-size(20px);
- }
- }
- }
- .main {
- .header-wrap {
- min-height: 70px;
- padding: 15px 15px 0 15px;
- }
- }
- .layout-control {
- position: fixed;
- right: 25%;
- bottom: 25px;
- z-index: 1;
- display: block;
- padding: 5px 8px;
- font-size: 0.8em;
- text-align: center;
- border: solid 1px #ccc;
- border-right: none;
- border-radius: 5px 0 0 5px;
- transition: 0.3s ease;
- &:hover {
- text-decoration: none;
- cursor: pointer;
- }
- }
- .revision-toc {
- max-width: 250px;
- overflow: hidden;
- font-size: 0.9em;
- .revision-toc-content {
- padding: 10px;
- > ul {
- padding-left: 0;
- ul {
- padding-left: 1em;
- }
- }
- // first level of li
- > ul > li {
- padding: 5px;
- margin: 4px 4px 4px 17px;
- }
- }
- }
- } // }}}
- // printable style
- @media print {
- .main-container {
- padding: 30px;
- a:after {
- display: none !important;
- }
- .main {
- header {
- border-bottom: solid 1px #666;
- h1 {
- font-size: 2em;
- color: #000;
- }
- }
- .revision-toc {
- float: none;
- max-width: 100%;
- margin-bottom: 20px;
- font-size: 0.9em;
- border: solid 1px #aaa;
- border-radius: 5px;
- .revision-toc-head {
- display: inline-block;
- float: none;
- }
- .revision-toc-content.collapse {
- display: block;
- height: auto;
- }
- }
- .meta {
- margin-top: 32px;
- color: #666;
- border-top: solid 1px #ccc;
- }
- }
- }
- }
- .system-version {
- position: fixed;
- right: 0.5em;
- bottom: 0;
- opacity: 0.6;
- > span {
- margin-left: 0.5em;
- }
- }
- .logo {
- .logo-mark {
- svg {
- width: $grw-navbar-height;
- height: $grw-navbar-height;
- padding: 12px;
- }
- }
- .logo-text {
- svg {
- width: 156px;
- height: $grw-navbar-height;
- }
- }
- }
- // header widget area
- .grw-title-bar {
- background: $grw-floral-white;
- }
- // bg-title for .row
- .bg-title {
- padding: initial;
- margin-right: -15px;
- margin-left: -15px;
- overflow: unset;
- }
- //@each $
- .grw-modal-head {
- font-size: 1em;
- border-bottom: 1px solid $grw-line-gray;
- }
|