Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- table {
- border-collapse: separate;
- border-spacing: 0;
- color: #4a4a4d;
- font: 14px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
- }
- th,
- td {
- padding: 10px 15px;
- vertical-align: middle;
- }
- .fixed_header tbody{
- display:block;
- overflow:auto;
- height:200px;
- width:600px;
- }
- .fixed_header thead tr{
- display:block;
- }
- thead {
- background: #395870;
- background: linear-gradient(#49708f, #293f50);
- color: #fff;
- font-size: 11px;
- text-transform: uppercase;
- }
- th:first-child {
- border-top-left-radius: 5px;
- text-align: left;
- }
- th:last-child {
- border-top-right-radius: 5px;
- }
- tbody tr:nth-child(even) {
- background: #f0f0f2;
- }
- td {
- border-bottom: 1px solid #cecfd5;
- border-right: 1px solid #cecfd5;
- }
- td:first-child {
- border-left: 1px solid #cecfd5;
- }
- .book-title {
- color: #395870;
- display: block;
- }
- .text-offset {
- color: #7c7c80;
- font-size: 12px;
- }
- .item-stock,
- .item-qty {
- text-align: center;
- }
- .item-price {
- text-align: right;
- }
- .item-multiple {
- display: block;
- }
- tfoot {
- text-align: right;
- }
- tfoot tr:last-child {
- background: #f0f0f2;
- color: #395870;
- font-weight: bold;
- }
- tfoot tr:last-child td:first-child {
- border-bottom-left-radius: 5px;
- }
- tfoot tr:last-child td:last-child {
- border-bottom-right-radius: 5px;
- }
- .btnEdits {
- display: inline-block;
- border-radius: 4px;
- background-color: #4CAF50;
- border: none;
- color: #FFFFFF;
- text-align: center;
- font-size: 16px;
- padding: 10px;
- width: 80px;
- transition: all 0.5s;
- cursor: pointer;
- margin: 5px;
- }
- .btnEdits span {
- cursor: pointer;
- display: inline-block;
- position: relative;
- transition: 0.5s;
- }
- .btnEdits span:after {
- content: '\00bb';
- position: absolute;
- opacity: 0;
- top: 0;
- right: -20px;
- transition: 0.5s;
- }
- .btnEdits:hover span {
- padding-right: 25px;
- }
- .btnEdits:hover span:after {
- opacity: 1;
- right: 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement