I have a visual force page and I want to convert it into lightning. Somehow I replace the PageBlockTable by DataTable to have the lightning effects, but I am having lightning effects only on DataTable. How can I have the lightning effects on whole Visualforce page?

I want to have the lightning effect on pointing the Black arrow.
<apex:form id="myform" >
<apex:actionFunction action="{!newLine}" name="newLine" rerender="myBlock" />
<apex:pageBlock title="" id="myBlock" >
<apex:inputHidden id="selectedLineNRs" value="{!selectedLineNRs}" />
<apex:inputHidden id="allLineNRs" value="{!allLineNRs}" />
<script type="text/javascript">
var hdnInputIDs = document.getElementById('{!$Component.myPage.myform.myBlock.selectedLineNRs}');
var arrayIDs = hdnInputIDs.value.split(";");
</script>
<apex:dataTable value="{!lines}" var="line" id="table" styleClass="slds-table slds-table--bordered slds-table--cell-buffer" >
<apex:column value="{!line.lineNumber}" />
<apex:column >
<apex:facet name="header">
<!-- <input type="checkbox" class="mainCbx" onclick="selectAllRows(this.checked);" style="cursor: help;" title="Delete or Credit" /> -->
<div title="Delete or Credit" class="cbx" width="16px" id="mainCbx" onClick="if(this.className == 'cbx'){ this.className = 'mainSelected'; selectAllRows(true); } else { this.className = 'cbx'; selectAllRows(false); }" />
</apex:facet>
<!-- <input type="checkbox" style="background-color: red; cursor: help;" class="cbx_{!line.lineNumber}" onclick="addSelectedID('{!line.lineNumber}');" title="{!line.actionTitle}" /> -->
<div lang="{!line.actionTitle}" title="{!line.actionTitle}" id="cbx_{!line.lineNumber}" class="cbx" onClick="if(this.className == 'cbx'){ this.className = this.lang; } else { this.className = 'cbx'; } addSelectedID('{!line.lineNumber}');"/>
<script type="text/javascript">
if(jQuery.inArray('{!line.lineNumber}', arrayIDs) > -1)
jQuery("#cbx_{!line.lineNumber}").attr("class", jQuery("#cbx_{!line.lineNumber}").attr("lang"));
else
jQuery("#cbx_{!line.lineNumber}").attr("class", "cbx");
var hdnInputIDs = document.getElementById('{!$Component.myPage.myform.myBlock.selectedLineNRs}');
var arrayIDs = hdnInputIDs.value.split(";");
if(arrayIDs.length - 1 == jQuery('.clsTable >tbody >tr').length)
jQuery("#mainCbx").attr("class", "mainSelected");
else
jQuery("#mainCbx").attr("class", "cbx");
</script>
</apex:column>
</apex:dataTable>