2021-04-29 13:04:19 +02:00
|
|
|
.dashboard-fonts {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.dashboard-installed-fonts {
|
|
|
|
max-width: 1000px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-top: $size-5;
|
2021-04-29 13:04:19 +02:00
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: $fs14;
|
|
|
|
color: $color-gray-30;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin: $size-1;
|
2021-04-29 13:04:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.font-item {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.installed-fonts-header {
|
|
|
|
color: $color-gray-40;
|
|
|
|
display: flex;
|
|
|
|
height: 40px;
|
|
|
|
font-size: $fs12;
|
|
|
|
background-color: $color-white;
|
|
|
|
align-items: center;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: 0px $size-5;
|
2021-04-29 13:04:19 +02:00
|
|
|
|
2021-05-25 14:06:47 +02:00
|
|
|
> .family {
|
|
|
|
min-width: 200px;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .variants {
|
|
|
|
padding-left: 12px;
|
2021-04-29 13:04:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-input {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
input {
|
|
|
|
font-size: $fs12;
|
|
|
|
border: 1px solid $color-gray-30;
|
|
|
|
border-radius: $br-small;
|
|
|
|
width: 130px;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: $size-1;
|
2021-04-29 13:04:19 +02:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-item {
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-top: $size-5;
|
2021-04-29 13:04:19 +02:00
|
|
|
color: $color-gray-40;
|
|
|
|
font-size: $fs14;
|
|
|
|
background-color: $color-white;
|
|
|
|
display: flex;
|
|
|
|
min-width: 1000px;
|
|
|
|
width: 100%;
|
2021-05-25 14:06:47 +02:00
|
|
|
min-height: 97px;
|
2021-04-29 13:04:19 +02:00
|
|
|
align-items: center;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: $size-5;
|
2021-05-25 14:06:47 +02:00
|
|
|
justify-content: space-between;
|
2021-04-29 13:04:19 +02:00
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
border-top: 1px solid $color-gray-10;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
border: 1px solid $color-gray-30;
|
|
|
|
border-radius: $br-small;
|
|
|
|
margin: 0px;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: $size-2;
|
2021-04-29 13:04:19 +02:00
|
|
|
font-size: $fs12;
|
|
|
|
}
|
|
|
|
|
2021-05-25 14:06:47 +02:00
|
|
|
> .family {
|
|
|
|
min-width: 200px;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .filenames {
|
|
|
|
min-width: 200px;
|
2021-04-29 13:04:19 +02:00
|
|
|
}
|
|
|
|
|
2021-05-25 14:06:47 +02:00
|
|
|
> .variants {
|
2021-04-29 13:04:19 +02:00
|
|
|
font-size: $fs14;
|
2021-05-25 14:06:47 +02:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
.variant {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
margin-left: 6px;
|
|
|
|
align-items: center;
|
|
|
|
svg {
|
|
|
|
fill: transparent;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.icon svg {
|
|
|
|
fill: $color-gray-30;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-29 13:04:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.filenames {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-size: $fs12;
|
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
.icon {
|
2021-10-05 10:16:44 +02:00
|
|
|
width: $size-5;
|
2021-04-29 13:04:19 +02:00
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
margin-left: 10px;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
svg {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.close {
|
|
|
|
svg {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-fonts-upload {
|
|
|
|
max-width: 1000px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.upload-button {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-fonts-hero {
|
|
|
|
font-size: $fs14;
|
|
|
|
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: $size-6;
|
2021-04-29 13:04:19 +02:00
|
|
|
background-color: $color-white;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-top: $size-6;
|
2021-04-29 13:04:19 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.banner {
|
|
|
|
background-color: unset;
|
|
|
|
|
2021-06-14 18:08:27 -06:00
|
|
|
display: flex;
|
2021-04-29 13:04:19 +02:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 10px;
|
|
|
|
svg {
|
|
|
|
fill: $color-info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.desc {
|
|
|
|
h2 {
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-bottom: $size-4;
|
2021-04-29 13:04:19 +02:00
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
width: 80%;
|
|
|
|
color: $color-gray-40;
|
|
|
|
}
|
2021-06-14 18:08:27 -06:00
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2021-04-29 13:04:19 +02:00
|
|
|
}
|
2021-05-25 14:06:47 +02:00
|
|
|
|
|
|
|
.fonts-placeholder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 1000px;
|
|
|
|
width: 100%;
|
|
|
|
height: 161px;
|
|
|
|
|
|
|
|
border: 1px dashed $color-gray-20;
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-40;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
color: $color-gray-40;
|
|
|
|
font-size: $fs14;
|
|
|
|
}
|
|
|
|
}
|
2021-04-29 13:04:19 +02:00
|
|
|
}
|