File size: 1,843 Bytes
3aa64d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
.dropbtn {
background-color: #3498DB;
color: white;
padding: 8px;
font-size: 14px;
border: none;
cursor: pointer;
width: auto;
margin-bottom: 0;
font-weight: 300;
}
/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
background: linear-gradient(#00ffa8, #3498DB, #2300ff);
color: white;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
display: inline-block;
text-align: center;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
text-align: left;
background-color: black;
min-width: 120px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
width: 5%;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 8px 12px;
text-decoration: none;
display: block;
text-align: left;
background: white;
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
display: block;
}
#center {
text-align: left;
}
.alert-box {
background-color: #fffbcc;
color: #777;
font-size: 14px;
line-height: 20px;
padding: 3px 7px;
text-align:centre;
font-family:Arial, Helvetica, sans-serif;
}
.alert-box .badge {
background-color: #f58f2a;
border-radius: 3px;
color: #fff;
margin-left: 4px;
margin-right: 4px;
padding: 3px 5px 3px 4px;
font-weight:bold;
text-transform: uppercase;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
} |