2016-01-13 23:46:12 +01:00
|
|
|
/*Custom CSS*/
|
2016-02-18 15:45:18 +01:00
|
|
|
td button, td .button {
|
|
|
|
margin: 0px;
|
2016-02-23 17:48:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.errorm {
|
|
|
|
color: red;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Navigation */
|
|
|
|
|
|
|
|
nav {
|
|
|
|
margin: 15px 0px 35px;
|
|
|
|
padding: 0 0 0 15px;
|
|
|
|
border-bottom: 1px solid #E1E1E1;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul, nav h4 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
color: #e9165c;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
margin-top: 8px;
|
|
|
|
float: right;
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav li a {
|
|
|
|
color: #222;
|
|
|
|
text-decoration: none;
|
|
|
|
-webkit-transition: color .3s, background .3s, border .3s;
|
|
|
|
transition: color .3s, background .3s, border .3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav li img {
|
|
|
|
height: 35px;
|
|
|
|
border-radius: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user {
|
|
|
|
padding: 0 0 0 15px;
|
|
|
|
font-weight: 600;
|
|
|
|
text-transform: capitalize;
|
|
|
|
border-left: 1px solid #E1E1E1;
|
|
|
|
color: #222;
|
2016-02-25 19:41:28 +01:00
|
|
|
}
|
|
|
|
/* Extras */
|
2016-02-27 21:10:12 +01:00
|
|
|
.sign {
|
|
|
|
font-family: 'Power Symbols', "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
font-weight: 400;
|
2016-02-25 19:41:28 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 0 15px;
|
2016-02-27 21:10:12 +01:00
|
|
|
font-size: 14px;
|
2016-02-25 19:41:28 +01:00
|
|
|
}
|
|
|
|
|
2016-02-27 21:10:12 +01:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2016-02-27 23:14:35 +01:00
|
|
|
.button-primary.red {
|
|
|
|
border: #e9165c 1px solid;
|
|
|
|
background-color: #e9165c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-primary.red:hover {
|
|
|
|
border: #c4124d 1px solid;
|
|
|
|
background-color: #c4124d;
|
|
|
|
}
|
|
|
|
|
2016-02-28 22:31:19 +01:00
|
|
|
.ng-modal form button, .ng-modal form {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-02-25 19:41:28 +01:00
|
|
|
/* Modal */
|
2016-02-27 21:10:12 +01:00
|
|
|
.ng-modal {
|
2016-02-25 19:41:28 +01:00
|
|
|
width: 85% !important;
|
|
|
|
max-width: 960px;
|
|
|
|
}
|
|
|
|
|
2016-02-27 21:10:12 +01:00
|
|
|
.ng-modal-overlay {
|
2016-02-25 19:41:28 +01:00
|
|
|
position:absolute;
|
|
|
|
z-index:9999;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background-color:#000000;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
2016-02-27 21:10:12 +01:00
|
|
|
.ng-modal-dialog {
|
2016-02-25 19:41:28 +01:00
|
|
|
z-index:10000;
|
|
|
|
position: absolute;
|
|
|
|
width: 50%;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
-webkit-transform: translate(-50%, -50%);
|
|
|
|
-moz-transform: translate(-50%, -50%);
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 4px 4px 80px #000;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2016-02-27 21:10:12 +01:00
|
|
|
.ng-modal-dialog-content {
|
2016-02-25 19:41:28 +01:00
|
|
|
padding:10px;
|
|
|
|
text-align: left;
|
2016-01-13 23:46:12 +01:00
|
|
|
}
|