This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
trev/nodejs/public/stylesheets/style.css

98 lines
No EOL
1.4 KiB
CSS

/*Custom CSS*/
td button, td .button {
margin: 0px;
}
.errorm {
color: red;
font-weight: 600;
}
.modal form {
display: inline;
}
/* 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{
margin-bottom: 0;
padding: 0 15px;
font-size: 12pt;
}
/* Modal */
.modal {
width: 85% !important;
max-width: 960px;
}
.modal-overlay {
position:absolute;
z-index:9999;
top:0;
left:0;
width:100%;
height:100%;
background-color:#000000;
opacity: 0.6;
}
.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;
}
.modal-dialog-content {
padding:10px;
text-align: left;
}