35 lines
619 B
CSS
Executable File
35 lines
619 B
CSS
Executable File
.profile_inner h1 {
|
|
font-family: 'oldenglish', serif !important;
|
|
}
|
|
|
|
.terms-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.6rem 1rem;
|
|
}
|
|
|
|
#menu a span {
|
|
border-bottom: 2px solid transparent;
|
|
transition: border-color 0.2s ease;
|
|
}
|
|
|
|
#menu a:hover span {
|
|
border-bottom: 2px solid currentColor;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
padding: 0.5rem 1rem;
|
|
background-color: #4f46e5; /* lila Beispiel */
|
|
color: #fff;
|
|
border-radius: 0.375rem;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #3730a3;
|
|
}
|
|
|