| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @import "variables";
- /**
- Alert
- */
- .alert {
- border: 1px solid;
- border-radius: 2px;
- padding: 0 12px;
- &.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;
- .kind-label {
- font-size: $font-size-12;
- background-color: #d3f2eb;
- border-radius: 4px;
- padding: 0 6px;
- margin-right: 6px;
- }
- .type, .default {
- margin-right: 12px;
- }
- .label{
- display: inline-block;
- color: $gray-700;
- }
- .type-code {
- display: inline-block;
- font-family: 'Oxygen Mono', monospace;
- padding: 0 $padding-4;
- background: $gray-100;
- color: $gray-700;
- border-radius: 4px;
- a:link, a:visited {
- color: darken($brand-color, 20%);
- }
- }
- }
- /**
- Info on the generated document
- */
- .generation-info {
- font-size: $font-size-12;
- border-bottom: 1px dashed $gray-400;
- }
|