Changed color of contract table
This commit is contained in:
parent
3cc65f5c17
commit
c66bcd13d6
15
index2.html
15
index2.html
@ -12,7 +12,7 @@
|
||||
<link rel="stylesheet" type="text/css" href="css/demo.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css?family=Titillium+Web');
|
||||
|
||||
@ -88,8 +88,8 @@
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
border-bottom: 2px solid #6678b1;
|
||||
border-right: 30px solid #fff;
|
||||
border-left: 30px solid #fff;
|
||||
border-right: 30px solid rgba(1,1,1,0);
|
||||
border-left: 30px solid rgba(1,1,1,0);
|
||||
color: white;
|
||||
padding: 8px 2px;
|
||||
}
|
||||
@ -101,9 +101,9 @@
|
||||
}
|
||||
|
||||
td {
|
||||
border-right: 30px solid #fff;
|
||||
border-left: 30px solid #fff;
|
||||
color: #669;
|
||||
border-right: 30px solid rgba(1,1,1,0);
|
||||
border-left: 30px solid rgba(1,1,1,0);
|
||||
color: #d2d2eb;
|
||||
padding: 12px 2px 0;
|
||||
}
|
||||
|
||||
@ -423,7 +423,7 @@
|
||||
document.getElementById("contract_data_display").style.opacity = 1;
|
||||
|
||||
var rows = data;
|
||||
var html = '<div id="closeMe"><i class="fa fa-times" style="font-size:60px;color:red;"></i></div>';
|
||||
var html = '<div id="closeMe"><i class="fas fa-times fa-2x" style="color:red;"></i></div>';
|
||||
html += '<table>';
|
||||
html += '<tr>';
|
||||
for( var j in rows[1] ) {
|
||||
@ -441,6 +441,7 @@
|
||||
|
||||
console.log(html);
|
||||
document.getElementById("contract_data_display").innerHTML = html;
|
||||
document.getElementById("contract_data_display").style.transform = "translate(-400px,15px)";
|
||||
|
||||
var x = document.getElementsByClassName("hideMe");
|
||||
for (var i=0;i<x.length;i++){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user