93 lines
1.2 KiB
SCSS
93 lines
1.2 KiB
SCSS
@use "../nav/nav.scss";
|
|
$paragraph: 20px;
|
|
$max-width: 600px;
|
|
|
|
.about-page {
|
|
color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
margin: nav.$padding;
|
|
}
|
|
|
|
.self {
|
|
width: 100%;
|
|
border-bottom: white 4px solid;
|
|
}
|
|
|
|
.about-container {
|
|
margin-top: 2 * nav.$padding;
|
|
flex-shrink: 1;
|
|
max-width: 75%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-family: Neuton;
|
|
line-height: 40px;
|
|
|
|
img:not(.self) {
|
|
border: 2px white solid;
|
|
}
|
|
|
|
p {
|
|
text-indent: 30px;
|
|
margin: 10px;
|
|
max-width: $max-width;
|
|
font-size: $paragraph;
|
|
}
|
|
|
|
h1 {
|
|
font-size: $paragraph * 2;
|
|
}
|
|
h2 {
|
|
font-size: $paragraph * 1.5;
|
|
}
|
|
h3 {
|
|
font-size: $paragraph * 1.1;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.edge {
|
|
background:#27213C;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.clothing, .computers {
|
|
margin: 15px 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
.clothing>img {
|
|
width: 33%;
|
|
}
|
|
|
|
.computers {
|
|
// select second
|
|
img:not(:first-child) {
|
|
width: 20%;
|
|
}
|
|
|
|
img {
|
|
width: 30%;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.external-link {
|
|
text-decoration: underline !important;
|
|
}
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: $paragraph;
|
|
max-width: $max-width;
|
|
gap: 10px;
|
|
} |