-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (107 loc) · 2.05 KB
/
style.css
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
* {
box-sizing: border-box;
}
body, html {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
font-family: sans-serif;
background-color: rgb(220,220,200);
}
.header {
background-color: #201606;
border-bottom: 2px solid #109010;
padding-left: 12px;
}
.page {
padding: 12px;
}
.header h1 {
font-size: 36pt;
margin: 0px;
padding: 0px;
color: #109010;
}
table {
border-collapse: collapse;
}
.mainSection {
background: rgba(255,255,255,0.5);
border: 2px solid #109010;
width: 100%;
max-width: 1024px;
}
.center {
margin-left: auto;
margin-right: auto;
}
.mainSection td {
border: 1px solid #109010;
}
.mainSection .tableHeader td {
background-color: #201606;
color: #109010;
border-bottom: 2px solid #109010;
padding: 4px;
font-size: 14pt;
}
.mainSection td h3 {
margin: 4px;
padding: 0px;
font-size: 12pt;
}
.mainSection td .description {
margin: 4px;
font-size: 10pt;
}
.mainSection .particCount {
font-size: 12pt;
vertical-align: bottom;
padding: 4px;
}
.mainSection .experimentListing:hover {
background-color: white;
cursor: pointer;
}
.experimentTitle h2 {
margin: 0px;
padding: 0px;
padding-top: 8px;
font-size: 22pt;
color: #019010;
}
.experimentTitle div {
font-size: 10pt;
margin-bottom: 12px;
}
.globalStats table {
background: rgba(255,255,255,0.5);
border: 2px solid #109010;
width: 100%;
max-width: 1024px;
}
.globalStats button {
margin-top: 4px;
margin-bottom: 8px;
}
.pairTable td {
padding-left: 6px;
padding-right: 6px;
padding-top: 3px;
padding-bottom: 3px;
font-size: 12pt;
border-bottom: 1px solid #109010;
}
.pairTable td.left {
font-weight: bold;
width: 40%;
}
.instanceStats {
margin: 8px;
background: white;
width: calc(100% - 16px);
}
.instanceSelector {
padding: 4px;
}