Table style : demo 6

Data List

# Full Name Age Job Title City Action
1 Vincent Williamson 31 iOS Developer Sinaai-Waas
2 Taylor Reyes 22 UI/UX Developer Baileux
3 Justin Block 26 Frontend Developer Overland Park
4 Sean Guzman 26 Web Designer Gloucester
5 Keith Carter 20 Graphic Designer Oud-Turnhout

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)
                        
                        

Data List

# Full Name Age Job Title City Action
1 Vincent Williamson 31 iOS Developer Sinaai-Waas
2 Taylor Reyes 22 UI/UX Developer Baileux
3 Justin Block 26 Frontend Developer Overland Park
4 Sean Guzman 26 Web Designer Gloucester
5 Keith Carter 20 Graphic Designer Oud-Turnhout

CSS

(Fonts required: Noto Sans.)
                        .demo{ font-family: 'Noto Sans', sans-serif; }
                        .panel{
                            background: transparent;
                            padding: 0;
                            border-radius: 0;
                            border: none;
                        }
                        .panel .panel-heading{
                            background-color: rgba(255,255,255,0.25);
                            padding: 15px 15px;
                            border-radius: 10px 10px 0 0;
                            margin: 0;
                            border-radius: 20px;
                        }
                        .panel .panel-heading .title{
                            color: #fff;
                            font-size: 28px;
                            font-weight: 500;
                            text-transform: capitalize;
                            line-height: 40px;
                            margin: 0;
                        }
                        .panel .panel-heading .btn{
                            color: rgba(255, 255, 255, 0.5);
                            background: transparent;
                            font-size: 16px;
                            text-transform: capitalize;
                            border: 2px solid #fff;
                            border-radius: 50px;
                            transition: all 0.3s ease 0s;
                        }
                        .panel .panel-heading .btn:hover{
                            color: #fff;
                            text-shadow: 3px 3px rgba(255, 255, 255, 0.2);
                        }
                        .panel .panel-body{ padding: 15px; }
                        .panel .panel-body .table{ background: linear-gradient(transparent, rgba(255,255,255,0.2), transparent); }
                        .panel .panel-body .table thead tr th{
                            color: #fff;
                            font-size: 16px;
                            font-weight: 700;
                            text-transform: uppercase;
                            padding: 12px;
                            border: none;
                        }
                        .panel .panel-body .table tbody tr td{
                            color: #fff;
                            font-size: 15px;
                            padding: 10px 12px;
                            vertical-align: middle;
                            border: none;
                        }
                        .panel .panel-body .table tbody .action-list{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .panel .panel-body .table tbody .action-list li{
                            display: inline-block;
                            margin: 0 5px;
                        }
                        .panel .panel-body .table tbody .action-list li a{
                            color: #fff;
                            font-size: 15px;
                            position: relative;
                            z-index: 1;
                            transition: all 0.3s ease 0s;
                        }
                        .panel .panel-body .table tbody .action-list li a:hover{
                            text-shadow: 3px 3px 0 rgba(255,255,255,0.3);
                        }
                        .panel .panel-body .table tbody .action-list li a:before,
                        .panel .panel-body .table tbody .action-list li a:after{
                            content: attr(data-tip);
                            color: #fff;
                            background-color: #111;
                            font-size: 12px;
                            padding: 5px 7px;
                            border-radius: 4px;
                            text-transform: capitalize;
                            display: none;
                            transform: translateX(-50%);
                            position: absolute;
                            left: 50%;
                            top: -32px;
                            transition: all 0.3s ease 0s;
                        }
                        .panel .panel-body .table tbody .action-list li a:after{
                            content: '';
                            height: 15px;
                            width: 15px;
                            padding: 0;
                            border-radius: 0;
                            transform: translateX(-50%) rotate(45deg);
                            top: -18px;
                            z-index: -1;
                        }
                        .panel .panel-body .table tbody .action-list li a:hover:before,
                        .panel .panel-body .table tbody .action-list li a:hover:after{
                            display: block;
                        }
                        .panel .panel-footer{
                            color: #fff;
                            background-color: rgba(255,255,255,0.25);
                            padding: 10px;
                            border: none;
                            border-radius: 20px;
                        }
                        .panel .panel-footer .col{ line-height: 30px; }
                        .pagination{ margin: 0; }
                        .pagination li a{
                            color: rgba(255,255,255,0.4);
                            background-color: transparent;
                            border: 2px solid rgba(255,255,255,0.4);
                            font-size: 16px;
                            font-weight: 500;
                            text-align: center;
                            line-height: 27px;
                            width: 31px;
                            height: 31px;
                            padding: 0;
                            margin: 0 3px;
                            border-radius: 10px;
                            transition: all 0.3s ease 0s;
                        }
                        .pagination li a:hover{
                            color: #fff;
                            background-color: transparent;
                            border-color: #fff;
                        }
                        .pagination li a:focus,
                        .pagination li.active a,
                        .pagination li.active a:hover{
                            color: #fff;
                            background-color: transparent;
                            border-color: #fff;
                        }
                        .pagination li:first-child a,
                        .pagination li:last-child a{
                            border-radius: 10px;
                            width: auto;
                            padding: 0 10px;
                        }
                        @media only screen and (max-width:767px){
                            .panel .panel-heading .title{
                                text-align: center;
                                margin: 0 0 10px;
                            }
                            .panel .panel-heading .btn_group{ text-align: center; }
                        }
                    
License Terms