|
@@ -14,8 +14,11 @@
|
|
max-height: 73px;
|
|
max-height: 73px;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
- background:
|
|
|
|
- -webkit-linear-gradient(90deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, 1) 40%);
|
|
|
|
|
|
+ background: -webkit-linear-gradient(
|
|
|
|
+ 90deg,
|
|
|
|
+ rgba(0, 0, 0, 0.1) 0%,
|
|
|
|
+ rgba(0, 0, 0, 1) 40%
|
|
|
|
+ );
|
|
background-clip: text;
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
-webkit-text-fill-color: transparent;
|
|
@@ -33,7 +36,7 @@
|
|
}
|
|
}
|
|
|
|
|
|
.section {
|
|
.section {
|
|
- animation: fadein .5s;
|
|
|
|
|
|
+ animation: fadein 0.5s;
|
|
}
|
|
}
|
|
|
|
|
|
.select.is-block select {
|
|
.select.is-block select {
|
|
@@ -55,13 +58,17 @@
|
|
}
|
|
}
|
|
|
|
|
|
.is-family-code {
|
|
.is-family-code {
|
|
- font-size: .9rem;
|
|
|
|
|
|
+ font-size: 0.9rem;
|
|
line-height: 1.5em;
|
|
line-height: 1.5em;
|
|
}
|
|
}
|
|
|
|
|
|
@keyframes fadein {
|
|
@keyframes fadein {
|
|
- from { opacity: 0; }
|
|
|
|
- to { opacity: 1; }
|
|
|
|
|
|
+ from {
|
|
|
|
+ opacity: 0;
|
|
|
|
+ }
|
|
|
|
+ to {
|
|
|
|
+ opacity: 1;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.level.level-multiline {
|
|
.level.level-multiline {
|
|
@@ -69,7 +76,11 @@
|
|
.level-item.is-one-third {
|
|
.level-item.is-one-third {
|
|
flex-basis: 26%;
|
|
flex-basis: 26%;
|
|
}
|
|
}
|
|
- .level-item.is-one-third:nth-child(n+4) {
|
|
|
|
|
|
+ .level-item.is-one-third:nth-child(n + 4) {
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.is-size-8 {
|
|
|
|
+ font-size: $size-8;
|
|
|
|
+}
|