Feat(Project Hub): Apply for Founding Partner Program page created with database structure and methods.
This commit is contained in:
257
static/dist/css/core_apply_founding_partner.bundle.css
vendored
Normal file
257
static/dist/css/core_apply_founding_partner.bundle.css
vendored
Normal file
@@ -0,0 +1,257 @@
|
||||
|
||||
/* Home page
|
||||
*/
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #1f2937;
|
||||
color: #f3f4f6;
|
||||
padding: 4rem 2rem 2rem;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.footer-section h3 {
|
||||
color: #fff;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-section ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer-section ul li {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-section a {
|
||||
color: #f3f4f6;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.footer-section a:hover {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
border-top: 1px solid #374151;
|
||||
padding-top: 2rem;
|
||||
text-align: center;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.footer-bottom a {
|
||||
color: aquamarine;
|
||||
}
|
||||
|
||||
.footer-section.contact {
|
||||
width: 100%;
|
||||
}
|
||||
.footer-section .container {
|
||||
padding: 0;
|
||||
}
|
||||
.footer-section .container.row .container.column {
|
||||
padding: 1vh 2vw;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.footer-content {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 540px) {
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-section {
|
||||
padding: 2rem 2rem 4rem;
|
||||
}
|
||||
.contact-section h1 {
|
||||
margin: 1rem auto;
|
||||
}
|
||||
.contact-section p {
|
||||
margin: 0.5rem auto;
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
max-width: 60vw;
|
||||
width: fit-content;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 40vw;
|
||||
}
|
||||
|
||||
.form-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 200px 1fr;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.form-label {
|
||||
padding-top: 0.5rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.form-input {
|
||||
width: 100%;
|
||||
padding: 0.5rem;
|
||||
border: 1px solid #d1d5db;
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
}
|
||||
textarea.form-input {
|
||||
min-height: 120px;
|
||||
}
|
||||
|
||||
.marketing-consent input {
|
||||
display: inline-block;
|
||||
margin-left: 20%;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.container.captcha > div:first-child > label:first-child {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: fit-content;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.container.captcha > p:last-child{
|
||||
font-size: 0.9rem;
|
||||
margin: 1vh 1vw;
|
||||
}
|
||||
.container.captcha .altcha-widget,
|
||||
.container.captcha .altcha-widget div.altcha {
|
||||
width: 200px;
|
||||
}
|
||||
.container.captcha .altcha-main {
|
||||
padding-left: 1rem;
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.container.captcha .altcha-main > :last-child {
|
||||
display: none;
|
||||
}
|
||||
.container.captcha .altcha,
|
||||
altcha-widget > div:first-child,
|
||||
.container.captcha > div > .altcha-widget > div {
|
||||
width: fit-content;
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
input[type="submit"] {
|
||||
margin-left: 40%;
|
||||
padding: 0.75rem 1.5rem;
|
||||
background: #2563eb;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
input[type="submit"]:hover {
|
||||
background: #1d4ed8;
|
||||
}
|
||||
|
||||
.data-notice {
|
||||
margin-top: 3rem;
|
||||
padding: 1.5rem;
|
||||
background: #f3f4f6;
|
||||
border-radius: 4px;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.data-notice h3 {
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.data-notice ul li {
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.contact-form {
|
||||
max-width: 80vw;
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 60vw;
|
||||
}
|
||||
.form-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
max-width: 75vw;
|
||||
}
|
||||
|
||||
.label-question {
|
||||
width: 20vw;
|
||||
align-self: center;
|
||||
}
|
||||
.container.column .container.row .container-input {
|
||||
width: 42vw;
|
||||
margin: 0 auto;
|
||||
padding: 0.25vh 0.5vw;
|
||||
}
|
||||
|
||||
.container.column .container.row .container-input .form-input {
|
||||
min-width: 40vw;
|
||||
max-width: 40vw;
|
||||
}
|
||||
|
||||
#id_speciality li,
|
||||
#id_existing_system li {
|
||||
list-style: none;
|
||||
}
|
||||
/*
|
||||
#id_speciality li::marker,
|
||||
#id_existing_system li::marker {
|
||||
display: none;
|
||||
}
|
||||
*/
|
||||
|
||||
.container.row.captcha > div {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
input[type="submit"] {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=core_apply_founding_partner.bundle.css.map*/
|
||||
1
static/dist/css/core_apply_founding_partner.bundle.css.map
vendored
Normal file
1
static/dist/css/core_apply_founding_partner.bundle.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
6
static/dist/css/core_contact.bundle.css
vendored
6
static/dist/css/core_contact.bundle.css
vendored
@@ -136,7 +136,11 @@ textarea.form-input {
|
||||
}
|
||||
.container.captcha > p:last-child{
|
||||
font-size: 0.9rem;
|
||||
margin: 1vh 0;
|
||||
margin: 1vh 1vw;
|
||||
}
|
||||
.container.captcha .altcha-widget,
|
||||
.container.captcha .altcha-widget div.altcha {
|
||||
width: 200px;
|
||||
}
|
||||
.container.captcha .altcha-main {
|
||||
padding-left: 1rem;
|
||||
|
||||
2
static/dist/css/core_contact.bundle.css.map
vendored
2
static/dist/css/core_contact.bundle.css.map
vendored
File diff suppressed because one or more lines are too long
12
static/dist/css/main.bundle.css
vendored
12
static/dist/css/main.bundle.css
vendored
@@ -92,8 +92,8 @@ script, link {
|
||||
}
|
||||
#pageBody > * > * {
|
||||
align-self: center;
|
||||
padding-top: 0.5vh;
|
||||
padding-bottom: 0.5vh;
|
||||
padding-top: 0.5vh 0.5vw;
|
||||
padding-bottom: 0.5vh 0.5vw;
|
||||
}
|
||||
#pageBody > .card {
|
||||
height: fit-content;
|
||||
@@ -106,7 +106,7 @@ script, link {
|
||||
.card {
|
||||
background-color: var(--colour-text-background);
|
||||
padding: 1vh 2.5vw;
|
||||
margin: 1vh;
|
||||
margin: 1vh 1vw;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
@@ -120,7 +120,7 @@ script, link {
|
||||
|
||||
.container {
|
||||
flex: 1;
|
||||
margin: 0px;
|
||||
margin: 0;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
text-align: flex-start;
|
||||
@@ -166,7 +166,7 @@ script, link {
|
||||
*/
|
||||
|
||||
.container-input {
|
||||
padding: 1vh;
|
||||
padding: 1vh 1vw;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
@@ -183,7 +183,7 @@ script, link {
|
||||
.container-input > input,
|
||||
.container-input > textarea {
|
||||
border: 2px solid var(--colour-accent);
|
||||
padding: 1vh;
|
||||
padding: 1vh 1vw;
|
||||
}
|
||||
|
||||
.label-title {
|
||||
|
||||
2
static/dist/css/main.bundle.css.map
vendored
2
static/dist/css/main.bundle.css.map
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user