renaming
parent
a08dbfd48f
commit
3c884f990d
@ -1,35 +0,0 @@
|
|||||||
.homepanel .socket {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.socket .plug {
|
|
||||||
display: inline-block;
|
|
||||||
width: 24px;
|
|
||||||
height: 24px;
|
|
||||||
border: 1px solid currentColor;
|
|
||||||
cursor: alias;
|
|
||||||
position: relative;
|
|
||||||
z-index: 50;
|
|
||||||
background: none;
|
|
||||||
|
|
||||||
user-select: none;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.plug.out {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.socket label {
|
|
||||||
text-transform: uppercase;
|
|
||||||
line-height: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
svg {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
/* border: 1px solid currentColor; */
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
|
||||||
|
main {
|
||||||
|
padding: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
padding: 0;
|
||||||
|
display: grid;
|
||||||
|
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
|
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
/* transform: skew(14deg); */
|
||||||
|
aspect-ratio: 1;
|
||||||
|
border: 1px solid currentColor;
|
||||||
|
padding: 32px;
|
||||||
|
font-stretch: 50%;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
font-size: 32px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card:hover {
|
||||||
|
background-color: grey;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card > * {
|
||||||
|
/* transform: skew(-28deg); */
|
||||||
|
}
|
||||||
|
|
||||||
|
.card svg {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
header {
|
||||||
|
display: block;
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header .title {
|
||||||
|
display: inline;
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search {
|
||||||
|
margin-top: 16px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search input {
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
}
|
@ -1,63 +1,48 @@
|
|||||||
|
.homepanel .socket {
|
||||||
|
position: absolute;
|
||||||
main {
|
|
||||||
padding: 0 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
|
||||||
padding: 0;
|
|
||||||
display: grid;
|
|
||||||
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
||||||
|
|
||||||
gap: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.plug {
|
||||||
/* transform: skew(14deg); */
|
display: inline-block;
|
||||||
aspect-ratio: 1;
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
border: 1px solid currentColor;
|
border: 1px solid currentColor;
|
||||||
padding: 32px;
|
cursor: alias;
|
||||||
font-stretch: 50%;
|
position: relative;
|
||||||
|
z-index: 50;
|
||||||
display: flex;
|
background: none;
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
font-size: 32px;
|
user-select: none;
|
||||||
text-align: center;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card:hover {
|
.plug.out {
|
||||||
background-color: grey;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card > * {
|
.socket label {
|
||||||
/* transform: skew(-28deg); */
|
text-transform: uppercase;
|
||||||
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card svg {
|
svg {
|
||||||
width: 32px;
|
position: absolute;
|
||||||
height: 32px;
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
/* border: 1px solid currentColor; */
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
.how-to {
|
||||||
header {
|
font-size: 24px;
|
||||||
display: block;
|
color: gray;
|
||||||
font-size: 28px;
|
position: absolute;
|
||||||
}
|
bottom: 16px;
|
||||||
|
left: 16px;
|
||||||
header .title {
|
pointer-events: none;
|
||||||
display: inline;
|
}
|
||||||
font-size: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search {
|
|
||||||
margin-top: 16px;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search input {
|
.how-to > * {
|
||||||
font-size: 28px;
|
margin: 0 4px;
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue