123 lines
No EOL
2 KiB
CSS
123 lines
No EOL
2 KiB
CSS
/*Custom CSS*/
|
|
td button, td .button {
|
|
margin: 0px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
/* Extras */
|
|
.sign {
|
|
font-family: 'Power Symbols', "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-weight: 400;
|
|
margin-bottom: 0;
|
|
padding: 0 15px;
|
|
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;
|
|
}
|
|
|
|
.button-primary.red {
|
|
border: #e9165c 1px solid;
|
|
background-color: #e9165c;
|
|
}
|
|
|
|
.button-primary.red:hover {
|
|
border: #c4124d 1px solid;
|
|
background-color: #c4124d;
|
|
}
|
|
|
|
.ng-modal form button, .ng-modal form {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Modal */
|
|
.ng-modal {
|
|
width: 85% !important;
|
|
max-width: 960px;
|
|
}
|
|
|
|
.ng-modal-overlay {
|
|
position:absolute;
|
|
z-index:9999;
|
|
top:0;
|
|
left:0;
|
|
width:100%;
|
|
height:100%;
|
|
background-color:#000000;
|
|
opacity: 0.6;
|
|
}
|
|
.ng-modal-dialog {
|
|
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;
|
|
}
|
|
.ng-modal-dialog-content {
|
|
padding:10px;
|
|
text-align: left;
|
|
} |