mirror of
https://github.com/liriliri/eruda.git
synced 2026-04-13 10:48:35 +08:00
57 lines
1.0 KiB
SCSS
57 lines
1.0 KiB
SCSS
@import '../style/variable';
|
|
@import '../style/mixin';
|
|
|
|
#info {
|
|
@include overflow-auto(y);
|
|
li {
|
|
margin: 10px;
|
|
border: 1px solid var(--border);
|
|
.title,
|
|
.content {
|
|
padding: $padding;
|
|
}
|
|
.title {
|
|
position: relative;
|
|
padding-bottom: 0;
|
|
color: var(--accent);
|
|
.icon-copy {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 14px;
|
|
color: var(--primary);
|
|
cursor: pointer;
|
|
transition: color $anim-duration;
|
|
&:active {
|
|
color: var(--accent);
|
|
}
|
|
}
|
|
}
|
|
.content {
|
|
margin: 0;
|
|
user-select: text;
|
|
color: var(--foreground);
|
|
font-size: $font-size-s;
|
|
word-break: break-all;
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
th,
|
|
td {
|
|
border: 1px solid var(--border);
|
|
padding: 10px;
|
|
}
|
|
}
|
|
* {
|
|
user-select: text;
|
|
}
|
|
a {
|
|
color: var(--link-color);
|
|
}
|
|
}
|
|
.device-key,
|
|
.system-key {
|
|
width: 100px;
|
|
}
|
|
}
|
|
}
|