add styles for new buttons

This commit is contained in:
Stefan Sterz 2016-02-27 21:10:12 +01:00
parent e115840125
commit 1517ada85d
3 changed files with 29 additions and 10 deletions

Binary file not shown.

View File

@ -19,6 +19,14 @@
src: local('Raleway SemiBold'), local('Raleway-SemiBold'), url(../fonts/Raleway-SemiBold.ttf); src: local('Raleway SemiBold'), local('Raleway-SemiBold'), url(../fonts/Raleway-SemiBold.ttf);
} }
@font-face {
font-family: 'Power Symbols';
font-style: normal;
font-weight: 600;
src: url(../fonts/Unicode_IEC_symbol.ttf);
}
/* /*
* Skeleton V2.0.4 * Skeleton V2.0.4
* Copyright 2014, Dave Gamache * Copyright 2014, Dave Gamache

View File

@ -8,10 +8,6 @@ td button, td .button {
font-weight: 600; font-weight: 600;
} }
.modal form {
display: inline;
}
/* Navigation */ /* Navigation */
nav { nav {
@ -57,19 +53,34 @@ nav li img {
color: #222; color: #222;
} }
/* Extras */ /* Extras */
.sign{ .sign {
font-family: 'Power Symbols', "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
margin-bottom: 0; margin-bottom: 0;
padding: 0 15px; padding: 0 15px;
font-size: 12pt; font-size: 14px;
} }
.symbol {
font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 19px;
cursor: pointer;
color: #87CEEB;
-webkit-transition: color .3s;
transition: color .3s;
}
.symbol:hover {
color: #33C3F0;
}
/* Modal */ /* Modal */
.modal { .ng-modal {
width: 85% !important; width: 85% !important;
max-width: 960px; max-width: 960px;
} }
.modal-overlay { .ng-modal-overlay {
position:absolute; position:absolute;
z-index:9999; z-index:9999;
top:0; top:0;
@ -79,7 +90,7 @@ nav li img {
background-color:#000000; background-color:#000000;
opacity: 0.6; opacity: 0.6;
} }
.modal-dialog { .ng-modal-dialog {
z-index:10000; z-index:10000;
position: absolute; position: absolute;
width: 50%; width: 50%;
@ -92,7 +103,7 @@ nav li img {
box-shadow: 4px 4px 80px #000; box-shadow: 4px 4px 80px #000;
border-radius: 5px; border-radius: 5px;
} }
.modal-dialog-content { .ng-modal-dialog-content {
padding:10px; padding:10px;
text-align: left; text-align: left;
} }