initial commit
This commit is contained in:
49
style.css
Normal file
49
style.css
Normal file
@@ -0,0 +1,49 @@
|
||||
body {
|
||||
font-family: arial;
|
||||
padding: 50px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 10pt;
|
||||
border-top: black 1px solid;
|
||||
border-right: black 1px solid;
|
||||
/* border-spacing : 10px */
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
border-left: black 1px solid;
|
||||
border-bottom: black 1px solid;
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #aaaaaa;
|
||||
}
|
||||
|
||||
td.number {
|
||||
color: blue
|
||||
}
|
||||
|
||||
td.boolean {
|
||||
color: green;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
td.date {
|
||||
color: purple;
|
||||
}
|
||||
|
||||
td.null:after {
|
||||
color: gray;
|
||||
font-style: italic;
|
||||
content: null;
|
||||
}
|
Reference in New Issue
Block a user