| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @import "variables";
- /**
- Alert
- */
- .alert {
- border: 1px solid;
- border-radius: 2px;
- padding: 0 18px;
- &.primary { border-color: $color-default; background: transparentize($color-default, 0.9); }
- &.danger { border-color: $color-danger; background: transparentize($color-danger, 0.9); }
- &.warning { border-color: $color-warning; background: transparentize($color-warning, 0.9); }
- &.success { border-color: $color-success; background: transparentize($color-success, 0.9); }
- }
- /**
- Member info for generated docs
- */
- .member-info {
- display: flex;
- align-items: center;
- margin-top: -16px;
- font-size: 14px;
- .kind-label {
- font-size: $font-size-12;
- background-color: #eaf9f5;
- color: #38979f;
- border-radius: 4px;
- padding: 0 6px;
- margin-right: 12px;
- }
- .type, .default {
- margin-right: 12px;
- a:link, a:visited {
- color: darken($brand-color, 20%);
- }
- }
- .type {
- code {
- }
- }
- .label{
- display: inline-block;
- color: $gray-600;
- }
- }
- /**
- Info on the generated document
- */
- .generation-info {
- font-size: $font-size-12;
- border-bottom: 1px dashed $gray-400;
- }
|