www-new/pages/about/index.module.css

115 lines
1.6 KiB
CSS

.title {
color: var(--purple-2);
font-size: 48px;
height: 80px;
margin-top: auto;
padding-left: 20px;
}
.title::after {
content: " Us!";
}
.headings h2 {
color: var(--purple-2);
font-weight: 600;
}
.text {
background-color: white;
}
.text,
.text li {
font-size: 16px;
color: black;
}
.text span {
color: var(--blue-2);
}
.titleContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
max-width: calc(800rem / 16);
margin: 0 auto;
overflow-y: clip;
overflow-x: clip;
height: 200px;
}
.codey {
transform: rotate(1.91deg);
z-index: -1;
height: 400px;
}
/*for temp mailing list components*/
.mailingList {
margin: 4rem auto;
max-width: calc(806rem / 16);
}
.mailingList form > * {
margin: 0.5rem auto;
}
.mailingList form input {
border-radius: 16px;
padding: calc(8rem / 16) 0;
}
.mailingList form input[type="text"] {
/*temporary hard coding of font*/
font-family: Poppins;
font-style: normal;
padding: 0 calc(8rem / 16);
}
.mailingList h2 {
color: var(--blue-2);
}
/*for temp mailing list components*/
@media only screen and (max-width: calc(768rem / 16)) {
.titleContainer {
display: flex;
flex-direction: column;
align-items: center;
max-width: calc(800rem / 16);
margin: 0 auto;
overflow-y: clip;
height: 130px;
}
.headings h2 {
font-size: 24px;
}
.title {
font-size: 24px;
font-weight: 600;
}
.title::after {
content: "";
}
.codey {
width: 140.21px;
height: 124.65px;
padding-left: 48px;
}
.text ul {
padding-left: 20px;
}
.text ol {
padding-left: 16px;
}
}