Skip to content
Open
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