Changed offers in VM pricing, Fixed pricing error changing disk size, VM footer dead links, Added logged out message

This commit is contained in:
Levi 2016-05-19 01:47:16 -04:30
commit e26eecf2eb
13 changed files with 124 additions and 44 deletions

View file

@ -33,7 +33,7 @@
.pricing li.type {
list-style: none;
padding: 13px;
height: 200px;
height: 150px;
}
.pricing big {
@ -72,6 +72,16 @@
box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
}
/* pricing color */
.p-black big,
.p-black h3 {
color: black;
}
.p-black button {
background: black;
}
.p-green big,
.p-green h3 {
color: #4c7737;

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 B

View file

@ -49,5 +49,9 @@ $( document ).ready(function() {
$('.disk-space-selector').on('change',change_attribute);
//Disable input
$('.disk-space-selector').keypress(function(event){
event.preventDefault();
});
});