Skip to content

Commit

Permalink
Update table.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mconlon17 authored Feb 6, 2019
1 parent 1f0a8e5 commit 7aa265d
Showing 1 changed file with 22 additions and 12 deletions.
34 changes: 22 additions & 12 deletions table.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,40 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
table {
#customers {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #ddd;
}

th, td {
text-align: left;
padding: 16px;
#customers td, #customers th {
border: 1px solid #ddd;
padding: 8px;
}

tr:nth-child(even) {
background-color: #f2f2f2
#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<table class="table table-striped table-bordered">
<h1>vivo.owl</h1>
Annotation properties, classes, datatype properties, object properties

<table id="customers">
<thead>
<tr>
<th>t</th>
<th>s</th>
<th>l</th>
<th>Type</th>
<th>IRI</th>
<th>Label</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit 7aa265d

Please sign in to comment.