Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Application form changes #43

Open
wants to merge 15 commits into
base: hhl_changes
Choose a base branch
from
2 changes: 1 addition & 1 deletion project/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ reload
staticfiles/
media/
bower_components/
asylum/static/css/
asylym/static/css/asylym.css
asylum/static/js/
asylum/static/fonts/

Expand Down
43 changes: 43 additions & 0 deletions project/asylum/static/css/application_form.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
.container-fluid {
max-width: 800px;
margin: 0px auto
}

.form-logo {
width: 200px;
}

.form-group {
}

.applicationsection {
padding: 19px;
background: #fff2dd;
border-radius: 20px;
margin: 10px;
}

.formsection {
transition:all 1.0s ease-in;
opacity: 0.0;
height: 0px;
overflow: hidden;
}
.showform {
opacity: 1.0;
height: auto;
}

.applicationfooter {
margin: 20px 10px 50px;
}

body {
background-color: #ffa000;
}

.warning-sign {
float: right;
width: 150px;
margin: 10px;
}
Loading