providers: complete?

This commit is contained in:
muerwre 2018-11-29 13:36:31 +07:00
parent 552e3effb8
commit b6bd300e1b
14 changed files with 150 additions and 29 deletions

View file

@ -220,10 +220,24 @@
.helper__buttons {
display: flex;
align-items: center;
user-select: none;
.button {
margin-left: 10px;
}
svg {
fill: white;
stroke: white;
cursor: pointer;
opacity: 0.5;
transition: opacity 250ms;
}
&:hover svg {
opacity: 1;
}
}
.logo-helper {
@ -270,3 +284,40 @@
}
}
.provider-helper {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-column-gap: 10px;
grid-row-gap: 10px;
padding-bottom: 0;
.provider-helper-thumb {
height: 100px;
background: #333333;
display: flex;
align-items: flex-end;
justify-content: center;
background: 50% 50% no-repeat;
border-radius: @panel_radius;
cursor: pointer;
position: relative;
}
.provider-helper-check {
width: 40px;
height: 40px;
position: absolute;
bottom: 50%;
right: 50%;
background: rgba(0, 0, 0, 0.7);
border-radius: 20px;
transform: translate(50%, 50%);
svg {
fill: white;
padding: 4px;
}
}
}