You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
1.4 KiB
CSS
96 lines
1.4 KiB
CSS
3 years ago
|
.sticker {
|
||
|
font-size: var(--text);
|
||
|
pointer-events: all;
|
||
|
}
|
||
|
|
||
|
.index {
|
||
|
margin: calc(var(--app-margin) * 2);
|
||
|
}
|
||
|
|
||
|
.sheet + .sheet {
|
||
|
margin-top: var(--app-margin);
|
||
|
}
|
||
|
|
||
|
.sheet h3 a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
.negative {
|
||
|
position: relative;
|
||
|
/* visibility: hidden; */
|
||
|
color: rgba(0,0,0,0.2);
|
||
|
text-decoration: none;
|
||
|
cursor: pointer;
|
||
|
line-height: 48px;
|
||
|
|
||
|
|
||
|
|
||
|
background-color: rgba(0, 0, 0, 0.075);
|
||
|
/* background-color: var(--background); */
|
||
|
border-radius: var(--radius);
|
||
|
padding: 3px 12px;
|
||
|
margin: 12px 0;
|
||
|
}
|
||
|
|
||
|
/* .negative:after {
|
||
|
visibility: visible;
|
||
|
content: "";
|
||
|
background-color: rgba(0, 0, 0, 0.075);
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-radius: var(--radius);
|
||
|
} */
|
||
|
|
||
|
.sheet > p {
|
||
|
display: inline-block;
|
||
|
margin: 6px 0;
|
||
|
}
|
||
|
|
||
|
h1.negative {
|
||
|
display: table;
|
||
|
}
|
||
|
|
||
|
.meta > h2 {
|
||
|
display: inline-block;
|
||
|
margin: 6px 0;
|
||
|
}
|
||
|
|
||
|
.sheet .section {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
margin-bottom: 6px;
|
||
|
|
||
|
font-size: var(--title);
|
||
|
color: rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
.chat-link {
|
||
|
position: absolute;
|
||
|
z-index: 1000;
|
||
|
top: 60px;
|
||
|
right: 60px;
|
||
|
|
||
|
background-color: springgreen;
|
||
|
border: 1px solid currentColor;
|
||
|
border-radius: 12px;
|
||
|
padding: 0 12px;
|
||
|
|
||
|
text-decoration: none;
|
||
|
|
||
|
font-weight: bold;
|
||
|
font-style: italic;
|
||
|
transform: scale(1);
|
||
|
transition: transform 0.2s ease-in;
|
||
|
|
||
|
}
|
||
|
|
||
|
.chat-link:hover{
|
||
|
transition: transform 0.1s ease-out;
|
||
|
transform: scale(1.025);
|
||
|
}
|
||
|
|