12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- body {
- margin:0px;
- }
-
- .container {
- height:100%;
- width:100%;
- position: fixed;
- z-index: -1
- }
-
- .members {
- margin-top: 8px;
- margin-left: 1em;
- margin-right: 1em;
- }
-
- /* Add a black background color to the top navigation */
- .topnav {
- background-color: #ED7D31;
- overflow: hidden;
- box-shadow: 0 4px 2px 0px gray;
- }
-
- /* Style the links inside the navigation bar */
- .topnav a {
- float: left;
- color: black;
- text-align: center;
- padding: 14px 16px;
- text-decoration: none;
- font-size: 23px;
- }
-
- .topnav a:hover {
- background-color: #BA6127;
- }
-
- .logo {
- padding: 0px 0px ! important;
- }
-
- .logo img {
- float: left;
- height: 54px;
- }
-
- /* The Modal (background) */
- .modal {
- display: none; /* Hidden by default */
- position: fixed; /* Stay in place */
- z-index: 1; /* Sit on top */
- padding-top: 100px; /* Location of the box */
- left: 0;
- top: 0;
- width: 100%; /* Full width */
- height: 100%; /* Full height */
- overflow: auto; /* Enable scroll if needed */
- background-color: rgb(0,0,0); /* Fallback color */
- background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
- }
-
- /* Modal Content */
- .modal-content {
- background-color: #fefefe;
- margin: auto;
- padding: 20px;
- border: 1px solid #888;
- max-width: 10%;
- }
-
- /* The Close Button */
- .close {
- color: #aaaaaa;
- float: right;
- font-size: 28px;
- font-weight: bold;
- }
-
- .close:hover, .close:focus {
- color: #000;
- text-decoration: none;
- cursor: pointer;
- }
-
- table.dataTable tbody th, table.dataTable tbody td {
- text-align: center;
- }
|