Xeverything11 (talk | contribs)
Created page with ".rc-container { border: 1px solid var(--color-primary1); padding: 1rem; margin: 0.5rem; border-radius: 4px; font-size: 1rem; } .rc-header { background-image: var(--color-primary-gradient); color: white; border-radius: 3px 3px 0 0; margin: -1rem -1rem 1rem; padding: 0.5rem 1rem; font-size: 1.5rem; font-weight: bold; text-transform: lowercase; }"
 
Xeverything11 (talk | contribs)
m tweaks
 
(14 intermediate revisions by the same user not shown)
Line 17: Line 17:
     font-weight: bold;
     font-weight: bold;
     text-transform: lowercase;
     text-transform: lowercase;
}
.rc-header a {color: inherit;}
.rc-unpatrolled {
float: right;
font-size: 1.2rem;
margin: 0 0 0.2rem 0.2rem;
}
.rc-main {
    width: 100%;
    height: 16rem;
    overflow: hidden;
    margin: 0 -1rem -1rem;
    padding: 0 1rem;
}
.rc-entry {
    max-height: 0rem;
    margin-bottom: calc(-1rem - 2px);
    padding: 0.5rem;
    transition: all 600ms cubic-bezier(0.5,0,0.5,1.5);
    border: 1px solid var(--color-primary1);
    border-radius: 4px;
    transform-origin: top;
    transform: scale(0.666);
    opacity: 0;
    word-break: break-word;
}
.rc-entry.rc-active {
    margin-bottom: 1rem;
    max-height: 6rem;
    transform: scale(1);
    opacity: 1
}
.rc-line2 {
font-size: 0.9rem;
}
}

Latest revision as of 12:59, 28 June 2025

.rc-container {
    border: 1px solid var(--color-primary1);
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 4px;
    font-size: 1rem;
}


.rc-header {
    background-image: var(--color-primary-gradient);
    color: white;
    border-radius: 3px 3px 0 0;
    margin: -1rem -1rem 1rem;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: lowercase;
}

.rc-header a {color: inherit;}

.rc-unpatrolled {
	float: right;
	font-size: 1.2rem;
	margin: 0 0 0.2rem 0.2rem;
}

.rc-main {
    width: 100%;
    height: 16rem;
    overflow: hidden;
    margin: 0 -1rem -1rem;
    padding: 0 1rem;
}

.rc-entry {
    max-height: 0rem;
    margin-bottom: calc(-1rem - 2px);
    padding: 0.5rem;
    transition: all 600ms cubic-bezier(0.5,0,0.5,1.5);
    border: 1px solid var(--color-primary1);
    border-radius: 4px;
    transform-origin: top;
    transform: scale(0.666);
    opacity: 0;
    word-break: break-word;
}

.rc-entry.rc-active {
    margin-bottom: 1rem;
    max-height: 6rem;
    transform: scale(1);
    opacity: 1
}

.rc-line2 {
	font-size: 0.9rem;
}