Init with some changes to the Serif Theme

This commit is contained in:
Waldehyd 2025-09-12 16:54:28 +02:00
commit 912d143813
243 changed files with 15251 additions and 0 deletions

View file

@ -0,0 +1,2 @@
.page-home {
}

View file

@ -0,0 +1,13 @@
.page-service {
.content {
> p {
&:first-of-type {
font-size: 1.6rem;
line-height: 1.4;
margin-bottom: 40px;
font-weight: regular;
color: rgb(104, 104, 104);
}
}
}
}

View file

@ -0,0 +1,52 @@
.page-teams {
.team-summary {
display: flex;
flex-wrap: wrap;
flex-direction: row;
.team-image {
height: 60px;
width: 60px;
margin-right: 10px;
border-radius: 50%;
overflow: hidden;
img {
width: 60px;
}
}
.team-meta {
flex: 1;
h2 {
margin: 0;
font-size: 22px;
font-weight: normal;
}
p {
color: $black;
text-transform: uppercase;
margin: 0;
font-size: 12px;
font-weight: 500;
}
}
.team-content {
margin-top: 20px;
flex: 1 0 100%;
}
}
.team-summary-large {
background-color: $white-offset;
padding: 30px;
border-radius: 3px;
.team-image {
height: 90px;
width: 90px;
margin-right: 20px;
border-radius: 50%;
overflow: hidden;
img {
width: 90px;
}
}
}
}