-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (134 loc) · 2.17 KB
/
style.css
File metadata and controls
140 lines (134 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
html,
body {
width: 100%;
padding: 0;
margin: 0;
}
#html-table {
min-width: 650px;
}
.masthead {
display: grid;
padding: 0 10px;
margin: 10px 0;
grid-template-columns: calc(100% - 200px) 200px;
height: 25px;
}
.masthead h4 {
margin: 0;
line-height: 25px;
}
.masthead input {
height: 100%;
width: 100%;
font: normal 14px sans-serif;
display: block;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #313b3f;
outline: none;
}
.masthead .search {
width: 200px;
position: relative;
}
.masthead .clear {
border: 1px solid black;
display: none;
border-radius: 3px;
position: absolute;
top: 50%;
right: 4px;
transform: translateY(-50%);
padding: 1px 3px;
font-size: 10px;
cursor: pointer;
}
.enable-clear {
display: block !important;
}
.masthead input::placeholder {
font: normal 13px sans-serif;
}
main {
overflow-x: auto;
}
.headers,
.tble-rows {
display: grid;
grid-template-columns: 200px 270px auto;
padding: 5px 0;
}
.tble-rows {
text-decoration: none;
color: black;
}
.tble-rows:nth-child(odd) {
background-color: lightgrey;
}
.tble-rows:hover {
background-color: #333;
color: white;
cursor: pointer;
}
.tble-rows:hover a {
color: white;
text-decoration: none;
}
.tble-cells {
padding: 5px 10px;
line-height: 21px;
}
.headers {
font-weight: 600;
cursor: pointer;
}
.headers > div {
padding: 5px 10px;
}
#html-table {
font-family: sans-serif;
font-size: 13px;
display: table;
width: 100%;
max-width: 768px;
margin: 50px auto 20px auto;
}
.caret {
transform: rotate(180deg);
display: inline-block;
font-size: 10px;
margin-left: 5px;
}
footer {
background-color: #313b3f;
color: #d9a74a;
width: 100%;
padding: 10px;
text-align: center;
box-sizing: border-box;
font: normal 14px sans-serif;
bottom: 0;
}
.website {
font: normal 14px sans-serif;
z-index: 1;
position: fixed;
width: 100%;
box-sizing: border-box;
top: 0;
letter-spacing: 0.5px;
display: block;
cursor: pointer;
background-color: #313b3f;
padding: 10px;
overflow: auto;
}
.website a {
text-decoration: none;
color: #d9a74a;
float: right;
}
.website span {
color: #d9a74a;
}