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

79 lines
1.2 KiB
CSS

.title {
color: var(--purple-2);
font-size: 48px;
height: 80px;
margin-top: auto;
}
.headings h2 {
color: var(--blue-2);
font-size: 24px;
}
.text {
background-color: white;
}
.text,
.text li {
font-size: 16px;
color: black;
}
.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;
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);
font-size: 24px;
}
/*for temp mailing list components*/
@media only screen and (max-width: calc(836rem / 16)) {
.titleContainer {
display: flex;
flex-direction: column;
align-items: center;
max-width: calc(800rem / 16);
margin: 0 auto;
overflow-y: clip;
height: 300px;
}
}