fix: target='_new' for hrefs

This commit is contained in:
mco-system 2023-04-11 18:21:10 +11:00
parent 8eda15bf62
commit 632c631c9f
2 changed files with 212 additions and 115 deletions

View File

@ -1,59 +1,103 @@
.logo { @media screen and (min-width: 45em) {
width: inherit; .header {
display: flex;
flex-direction: row;
justify-content: center;
gap: 0;
text-align: center;
font-size: 9.75em;
font-weight: bold;
padding: 0;
}
.logo {
width: inherit;
}
.header > span {
margin: 0;
}
.subheader {
margin: -1em 0 0 0;
font-size: 3.47em;
}
.place {
margin: 0;
font-size: 2.145em;
}
.important {
font-family: pfdintextcomppromedium;
}
.left {
float: left;
margin-right: 0.5em;
}
.right {
float: right;
margin-left: 0.5em;
}
.logo_partner {
max-width: 250px;
max-height: 250px;
margin: 1em;
}
.button {
font-size: 2.5em;
transition-property: color;
transition-duration: 1s;
}
.button:hover {
color: var(--main-color);
cursor: pointer;
}
} }
.header { @media screen and (max-width: 44em) {
display: flex; .header {
flex-direction: row; display: flex;
justify-content: center; flex-direction: row;
gap: 0; justify-content: center;
text-align: center; gap: 0;
font-size: 9.75em; text-align: center;
font-weight: bold; font-size: 6.75em;
padding: 0; font-weight: bold;
} padding: 0;
}
.header > span { .header > span {
margin: 0; margin: 0;
} }
.logo {
.subheader { width: inherit;
margin: -1em 0 0 0; }
font-size: 3.47em; .subheader {
} margin: -1em 0 0 0;
font-size: 2.30em;
.place { }
margin: 0; .place {
font-size: 2.145em; margin: 0;
} font-size: 1.8em;
}
.important { .important {
font-family: pfdintextcomppromedium; font-family: pfdintextcomppromedium;
} }
.left {
.left { float: left;
float: left; margin-right: 0.25em;
margin-right: 0.5em; }
} .right {
float: right;
.right { margin-left: 0.25em;
float: right; }
margin-left: 0.5em; .logo_partner {
} max-width: 125px;
max-height: 125px;
.logo_partner { margin: 0.25em;
max-width: 250px; }
max-height: 250px; .button {
margin: 1em; font-size: 1.5em;
} transition-property: color;
transition-duration: 1s;
.button { }
font-size: 2.5em; .button:hover {
transition-property: color; color: var(--main-color);
transition-duration: 1s; cursor: pointer;
} }
.button:hover {
color: var(--main-color);
cursor: pointer;
} }

View File

@ -1,61 +1,114 @@
.page_wrapper { @media screen and (min-width: 45em) {
display: flex; .page_wrapper {
flex-direction: column; display: flex;
justify-content: center; flex-direction: column;
align-items: center; justify-content: center;
align-content: center; align-items: center;
text-align: center; align-content: center;
padding-bottom: 5em; text-align: center;
padding-bottom: 5em;
}
.center_wrapper,
.header_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.logo_wrapper {
margin-top: 1em;
width: 40em;
}
.navbar_wrapper {
position: fixed;
bottom: 0;
padding: 1em 0;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 2em;
background-color: var(--main-bg-color);
width: 100vw;
}
.content {
font-size: 2em;
font-family: pfdintextcompprothin;
color: var(--main-color);
width: 20em;
text-align:justify;
text-justify: inter-word;
}
.partners {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.subpartners {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}
} }
@media screen and (max-width: 44em) {
.center_wrapper, .page_wrapper {
.header_wrapper { display: flex;
display: flex; flex-direction: column;
flex-direction: column; justify-content: center;
justify-content: center; align-items: center;
align-items: center; align-content: center;
text-align: center; text-align: center;
} padding-bottom: 2em;
}
.logo_wrapper { .center_wrapper,
margin-top: 1em; .header_wrapper {
width: 40em; display: flex;
} flex-direction: column;
justify-content: center;
.navbar_wrapper { align-items: center;
position: fixed; text-align: center;
bottom: 0; }
padding: 1em 0; .logo_wrapper {
display: flex; margin-top: 0.5em;
flex-direction: row; width: 35em;
justify-content: center; }
align-items: center; .navbar_wrapper {
gap: 2em; position: fixed;
background-color: var(--main-bg-color); bottom: 0;
width: 100vw; padding: 0.5em 0;
} display: flex;
flex-direction: row;
.content { justify-content: center;
font-size: 2em; align-items: center;
font-family: pfdintextcompprothin; gap: 1em;
color: var(--main-color); background-color: var(--main-bg-color);
width: 20em; width: 100vw;
text-align:justify; }
text-justify: inter-word; .content {
} font-size: 1em;
font-family: pfdintextcompprothin;
.partners { color: var(--main-color);
display: flex; width: 20em;
flex-direction: column; text-align:justify;
justify-content: center; text-justify: inter-word;
align-items: center; }
text-align: center; .partners {
} display: flex;
flex-direction: column;
.subpartners { justify-content: center;
display: flex; align-items: center;
flex-direction: row; text-align: center;
justify-content: center; }
align-items: center; .subpartners {
text-align: center; display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}
} }