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);
}
@font-face {
font-family: 'Power Symbols';
font-style: normal;
font-weight: 600;
src: url(../fonts/Unicode_IEC_symbol.ttf);
}
/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache

View File

@ -8,10 +8,6 @@ td button, td .button {
font-weight: 600;
}
.modal form {
display: inline;
}
/* Navigation */
nav {
@ -57,19 +53,34 @@ nav li img {
color: #222;
}
/* Extras */
.sign{
.sign {
font-family: 'Power Symbols', "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
margin-bottom: 0;
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 {
.ng-modal {
width: 85% !important;
max-width: 960px;
}
.modal-overlay {
.ng-modal-overlay {
position:absolute;
z-index:9999;
top:0;
@ -79,7 +90,7 @@ nav li img {
background-color:#000000;
opacity: 0.6;
}
.modal-dialog {
.ng-modal-dialog {
z-index:10000;
position: absolute;
width: 50%;
@ -92,7 +103,7 @@ nav li img {
box-shadow: 4px 4px 80px #000;
border-radius: 5px;
}
.modal-dialog-content {
.ng-modal-dialog-content {
padding:10px;
text-align: left;
}