mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-02 16:37:39 +01:00
37 lines
654 B
CSS
37 lines
654 B
CSS
|
.title {
|
||
|
font-size: 2rem;
|
||
|
color: white;
|
||
|
max-width: 20rem;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
margin-bottom: 3.5rem;
|
||
|
}
|
||
|
|
||
|
.title-size-medium {
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
|
||
|
.title-accent {
|
||
|
color: #E880C5;
|
||
|
font-weight: 600;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
margin-bottom: 0.5rem;
|
||
|
margin-top: 1rem;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.title-accent.title-accent-link {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.title-accent.title-accent-link .arrow {
|
||
|
transition: transform 100ms ease-in-out;
|
||
|
transform: translateY(.1rem);
|
||
|
margin-right: .2rem;
|
||
|
}
|
||
|
|
||
|
.title-accent.title-accent-link:hover .arrow {
|
||
|
transform: translateY(.1rem) translateX(-.5rem);
|
||
|
}
|