1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .has {
- &-text-overflow-ellipsis {
- flex: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- &-text-nowrap {
- white-space: nowrap;
- }
- &-content-overflow-ellipsis {
- max-height: 73px;
- overflow: hidden;
- text-overflow: ellipsis;
- background: -webkit-linear-gradient(
- 90deg,
- rgba(0, 0, 0, 0.1) 0%,
- rgba(0, 0, 0, 1) 40%
- );
- background-clip: text;
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- }
- .breadcrumb li {
- &.is-active > span {
- padding: 0 0.75em;
- }
- &:first-child > span {
- padding-left: 0;
- }
- }
- .section {
- animation: fadein 0.5s;
- }
- .select.is-block select {
- width: 100%;
- }
- .notification {
- &.is-light {
- &.is-primary {
- background-color: #ebfffc;
- color: #00947e;
- }
- &.is-danger {
- background-color: #feecf0;
- color: #cc0f35;
- }
- }
- }
- .is-family-code {
- font-size: 0.9rem;
- line-height: 1.5em;
- }
- @keyframes fadein {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- .level.level-multiline {
- flex-wrap: wrap;
- .level-item.is-one-third {
- flex-basis: 26%;
- }
- .level-item.is-one-third:nth-child(n + 4) {
- margin-top: 10px;
- }
- }
- .is-size-8 {
- font-size: $size-8;
- }
|