-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
152 lines (130 loc) · 2.46 KB
/
style.css
File metadata and controls
152 lines (130 loc) · 2.46 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
141
142
143
144
145
146
147
148
149
150
151
html{
padding:50px 50px 25px 50px;
}
body{
text-align: left;
margin-left: auto;
margin-right: auto;
margin-top:0px;
margin-bottom:0px;
max-width: 700px;
justify:center;
}
a{
color:black;
text-decoration:none;
}
button{
background-color: #A3E0A3;
border-radius: 4px;
border: 1px solid #dbd7d2;
}
#paper{
margin-left: 20pt;
margin-right: 20pt;
margin-top:5px;
margin-bottom:15px;
display:block;
}
.icon{
margin-left:15px;
margin-right:15px;
}
#icons{
width:100%;
text-align:center;
}
table, th, td {
text-align: center;
margin-left: 0px;
margin-right: auto;
margin-top:5px;
margin-bottom:5px;
}
#tablecontainer{
max-width:800px;
}
.fixHead thead th {
position: sticky;
overflow: scroll;
top: 0;
}
col {
visibility: visible;
}
table {
border: 2px solid #dbd7d2;
border-radius: 5px;
}
.table-metadata {
margin-left:10px;
margin-left: auto;
margin-right: auto;
width:80%;
}
th {
background-color: darkgray;
}
tr:nth-child(even) {background-color: #dbd7d2;}
tr:nth-child(even):hover {background-color: #FFBF7F;}
tbody tr:hover{background-color: #FFD6AD;}
td.invariant{
width: 60px;
}
td.name, td.hname{
width: 120px;
}
td.comment{
width: 180px;
}
.metadata{
color:gray;
font-size: 50%;
max-width: 50px;
}
.invariant-missing{
color:red;
}
/* Sortable tables */
table.sortable thead {
background-color: darkgray;
font-weight: bold;
cursor: default;
}
#overlay {
position: fixed; /* Sit on top of the page content */
display: none; /* Hidden by default */
width: 100%; /* Full width (cover the whole page) */
height: 100%; /* Full height (cover the whole page) */
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.5); /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
cursor: pointer; /* Add a pointer on hover */
text-align:center;
vertical-align: middle;
}
#overlay_container{
position: fixed; /* Sit on top of the page content */
display: none; /* Hidden by default */
width: 60%;
height: 80%;
max-width:800px;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(255,255,255,1);
z-index:3; /* Specify a stack order in case you're using a different order for other elements */
cursor: pointer; /* Add a pointer on hover */
text-align:center;
vertical-align: middle;
margin: auto;
overflow: scroll;
margin-top:100px;
}
#overlay_container:hover{
cursor: default;
}