Manual merge of ungleich/master into opennebula-integration
This commit is contained in:
parent
d10285e23d
commit
d537fcb118
227 changed files with 25682 additions and 478 deletions
|
|
@ -155,6 +155,11 @@ h6 {
|
|||
margin-top: 0;
|
||||
}
|
||||
|
||||
.btn-buynow {
|
||||
background-color: #607D8B;
|
||||
border-color: #607D8B;
|
||||
}
|
||||
|
||||
@media(max-width:1199px) {
|
||||
ul.banner-social-buttons {
|
||||
float: left;
|
||||
|
|
@ -178,6 +183,10 @@ h6 {
|
|||
ul.banner-social-buttons > li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.row {
|
||||
margin-right: 0px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
|
|
@ -195,9 +204,34 @@ a#forgotpassword {
|
|||
|
||||
}
|
||||
|
||||
|
||||
.topnav a:focus {
|
||||
outline: none;
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
.topnav .btn:focus {
|
||||
outline: none !important;
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
.selectpicker {
|
||||
margin-top: 8px !important;
|
||||
}
|
||||
|
||||
.content-404 h1 {
|
||||
margin: 0 0 15px;
|
||||
font-size: 200px;
|
||||
line-height: 1;
|
||||
font-weight: 700;
|
||||
color: #6db97c;
|
||||
|
||||
}
|
||||
|
||||
.btn-buynow {
|
||||
background-color: #607D8B;
|
||||
border-color: #607D8B;
|
||||
}
|
||||
.form-300{
|
||||
width: 300px;
|
||||
}
|
||||
10
datacenterlight/static/datacenterlight/css/main.css
Normal file
10
datacenterlight/static/datacenterlight/css/main.css
Normal file
File diff suppressed because one or more lines are too long
BIN
datacenterlight/static/datacenterlight/img/bg.png
Normal file
BIN
datacenterlight/static/datacenterlight/img/bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
BIN
datacenterlight/static/datacenterlight/img/datacenterlight.png
Normal file
BIN
datacenterlight/static/datacenterlight/img/datacenterlight.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
datacenterlight/static/datacenterlight/img/loading.gif
Normal file
BIN
datacenterlight/static/datacenterlight/img/loading.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
55
datacenterlight/static/datacenterlight/js/main.js
Normal file
55
datacenterlight/static/datacenterlight/js/main.js
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
(function($){
|
||||
'use strict'; // Start of use strict
|
||||
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
verifiedUrl();
|
||||
init_options_interested();
|
||||
init_nav();
|
||||
change_values();
|
||||
});
|
||||
|
||||
function verifiedUrl(){
|
||||
if(window.location.href.indexOf('#success') > -1){
|
||||
form_success();
|
||||
}
|
||||
}
|
||||
|
||||
function init_options_interested(){
|
||||
$('.row-vms').click(function(){
|
||||
$('.row-vms').removeClass('row-vms__active');
|
||||
$(this).addClass('row-vms__active');
|
||||
var number = $('.row-vms__active input').val();
|
||||
var price = $('.row-vms__active input').data('price');
|
||||
_calculate(number, price);
|
||||
});
|
||||
}
|
||||
|
||||
function init_nav(){
|
||||
|
||||
$('.nav-local').click(function(){
|
||||
$('html, body').animate({
|
||||
scrollTop: $('#'+$(this).data('href')).offset().top
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function change_values(){
|
||||
$('.number-vms').keyup(function () {
|
||||
var number = $(this).val();
|
||||
var price = $(this).data('price');
|
||||
_calculate(number, price);
|
||||
});
|
||||
|
||||
}
|
||||
function form_success(){
|
||||
$('#sucessModal').modal('show');
|
||||
}
|
||||
function _calculate(numbers, price){
|
||||
$('#valueTotal').text(numbers*price*31);
|
||||
}
|
||||
|
||||
|
||||
})(jQuery); // End of use strict
|
||||
1
datacenterlight/static/datacenterlight/js/plugin.js
Normal file
1
datacenterlight/static/datacenterlight/js/plugin.js
Normal file
File diff suppressed because one or more lines are too long
4
datacenterlight/static/datacenterlight/js/vendor.js
Normal file
4
datacenterlight/static/datacenterlight/js/vendor.js
Normal file
File diff suppressed because one or more lines are too long
1
datacenterlight/static/datacenterlight/js/vendor/modernizr.js
vendored
Normal file
1
datacenterlight/static/datacenterlight/js/vendor/modernizr.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue