-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
footer, meet the committee, timetable and many more
- Loading branch information
Marit Radder
authored and
Marit Radder
committed
Jan 10, 2024
1 parent
ec815f3
commit af29d99
Showing
10 changed files
with
247 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,77 +1,94 @@ | ||
@import "./src/variables"; | ||
@import "./src/mixins"; | ||
|
||
.container { | ||
width: calc(100% - 16px); | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0 8px; | ||
} | ||
|
||
.image { | ||
flex: 2; | ||
align-self: center; | ||
.committee { | ||
margin-bottom: 100px; | ||
|
||
img { | ||
h2 { | ||
color: $primary-color; | ||
margin-bottom: 0; | ||
font-size: 48px; | ||
font-family: "Krona-One"; | ||
margin-bottom: 50px; | ||
width: 100%; | ||
border: 4px solid $secondary-color; | ||
border-radius: 12px; | ||
box-sizing: border-box; | ||
object-fit: cover; | ||
text-align: center; | ||
|
||
} | ||
} | ||
|
||
.committee { | ||
flex: 3; | ||
p { | ||
margin: 0; | ||
font-family: "Krona-One"; | ||
font-size: 28px; | ||
} | ||
|
||
h2 { | ||
.function { | ||
color: $primary-color; | ||
margin-bottom: 0; | ||
} | ||
|
||
h3 { | ||
color: $secondary-color; | ||
margin-top: 0; | ||
padding: 0; | ||
.container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
width: 80%; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
width: 100%; | ||
line-height: 1.4; | ||
.left { | ||
width: 50%; | ||
gap: 24px; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
tr { | ||
border-bottom: 1px dotted $secondary-color; | ||
.right { | ||
width: 50%; | ||
text-align: right; | ||
gap: 24px; | ||
display: flex; | ||
flex-direction: column; | ||
|
||
&:last-child { | ||
border-bottom: none; | ||
.person { | ||
justify-content: flex-end; | ||
} | ||
} | ||
|
||
th { | ||
float: left; | ||
display: contents; | ||
color: mix($primary-color, $primary-text, 80%); | ||
} | ||
.middle { | ||
width: 100%; | ||
text-align: center; | ||
margin-top: 24px; | ||
|
||
td { | ||
white-space: nowrap; | ||
.person { | ||
justify-content: center; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 20px; | ||
} | ||
} | ||
} | ||
|
||
@include breakpoint(lg) { | ||
.container { | ||
flex-direction: row; | ||
width: 100%; | ||
margin: 0; | ||
img { | ||
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); | ||
height: 160px; | ||
width: 150px; | ||
min-width: 150px; | ||
object-fit: cover; | ||
position: relative; | ||
} | ||
|
||
.committee { | ||
margin-left: 16px; | ||
.polygon { | ||
height: 170px; | ||
width: 160px; | ||
min-width: 160px; | ||
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); | ||
background-color: $primary-color; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
tr { | ||
border-bottom: none; | ||
} | ||
.person { | ||
display: flex; | ||
align-items: center; | ||
gap: 40px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.