ticket 1855

choose course of studies, language,...
registration bootstrap styles
This commit is contained in:
Robert Hofer
2015-02-12 15:10:58 +01:00
parent bb500bc8c9
commit 8e70bb7e05
9 changed files with 945 additions and 662 deletions
File diff suppressed because one or more lines are too long
+30
View File
@@ -0,0 +1,30 @@
/*
Copyright (C) 2015 fhcomplete.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Authors: Robert Hofer <robert.hofer@technikum-wien.at>
*/
/*
Created on : Feb 11, 2015, 10:17:08 AM
Author : Robert Hofer <robert.hofer@technikum-wien.at>
*/
#lp h1, #lp img {
margin: 50px 0;
}
p.infotext {
margin: 40px 0;
}
+6 -2
View File
@@ -111,8 +111,12 @@ $(function() {
$('#bewerber-navigation a[href="#' + activeTab + '"]').tab('show');
}
$('.btn_weiter').on('click', function() {
var tabname = $(this).attr('data-next-tab');
$('.btn-nav').on('click', function() {
var tabname = $(this).attr('data-jump-tab');
$('#bewerber-navigation a[href="#' + tabname + '"]').tab('show');
});
$('#bewerber-navigation a').on('click', function() {
$(this).closest('.collapse').collapse('hide');
});
});
+8 -6
View File
File diff suppressed because one or more lines are too long