parent
735e00383f
commit
20b2f9df80
@ -1,78 +1,114 @@
|
|||||||
body {
|
body {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
color: #4a4a4a;
|
|
||||||
font-family: Helvetica, Arial, sans-serif;
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
font-size: 13px;
|
font-size: .8rem;
|
||||||
line-height: 16px;
|
height: 20.8rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
min-width: 200px;
|
overflow: hidden;
|
||||||
overflow-x: hidden;
|
width: 30rem;
|
||||||
padding: 15px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
.header {
|
||||||
color: #4a4a4a;
|
align-items: center;
|
||||||
|
background: linear-gradient(160deg, #32067c, #150233);
|
||||||
|
height: 4rem;
|
||||||
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:focus {
|
.header__link:focus {
|
||||||
outline: 0;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
.header__logo {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 16px;
|
margin: .2rem 0 0 1.5rem;
|
||||||
margin-right: 8px;
|
-webkit-backface-visibility: hidden;
|
||||||
vertical-align: top;
|
-webkit-transform: translateZ(0) scale(1.0, 1.0);
|
||||||
width: 16px;
|
transform: translateZ(0);
|
||||||
|
height: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detected-app {
|
.container {
|
||||||
padding: 7px 0;
|
height: 15.8rem;
|
||||||
|
overflow: scroll;
|
||||||
|
padding: 1rem 1.5rem 0rem 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detected-app:first-child {
|
.detected {
|
||||||
padding-top: 0;
|
columns: 2;
|
||||||
|
column-gap: 1.5rem;
|
||||||
|
line-height: 1.4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detected-app:last-child {
|
.detected__category {
|
||||||
border: none;
|
break-inside: avoid-column;
|
||||||
padding-bottom: 0;
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detected-app a {
|
.detected__category-link {
|
||||||
|
border-bottom: 1px solid #dbdbdb;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detected__category-name {
|
||||||
color: #4608ad;
|
color: #4608ad;
|
||||||
display: block;
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detected__category-link:hover .detected__category-name {
|
||||||
|
color: #4a4a4a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detected__app {
|
||||||
|
display: block;
|
||||||
|
line-height: 1.7rem;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detected-app a .label .name {
|
.detected__app:focus {
|
||||||
border-bottom: 1px solid transparent;
|
display: block;
|
||||||
}
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.detected-app a:hover .label .name {
|
.detected__app-icon {
|
||||||
border-bottom: 1px solid #4608ad;
|
display: inline-block;
|
||||||
}
|
height: 16px;
|
||||||
|
margin-right: .5rem;
|
||||||
|
vertical-align: -.2rem;
|
||||||
|
width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.detected-app a .category .name {
|
.detected__app-name {
|
||||||
color: #4a4a4a;
|
color: #4a4a4a;
|
||||||
border-bottom: 1px solid transparent;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.detected-app a:hover .category .name {
|
.detected__app:hover .detected__app-name {
|
||||||
border-bottom: 1px solid #4a4a4a;
|
border-bottom: 1px solid #4a4a4a;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label {
|
.detected-app {
|
||||||
font-weight: bold;
|
padding: 7px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.category {
|
.detected-app:first-child {
|
||||||
display: block;
|
padding-top: 0;
|
||||||
margin: 5px 0 0 24px;
|
}
|
||||||
|
|
||||||
|
.detected-app:last-child {
|
||||||
|
border: none;
|
||||||
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty {
|
.empty {
|
||||||
color: #999;
|
display: flex;
|
||||||
font-style: italic;
|
height: 16rem;
|
||||||
text-align: center;
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty__text {
|
||||||
}
|
}
|
||||||
|
Reference in new issue