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