forked from benkrikler/plotify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
133 lines (133 loc) · 2.94 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
129
130
131
132
133
/*************************************************************
* Set up main structural divs for the page
* Largely taken from http://alistapart.com/article/holygrail
*************************************************************/
body {
min-width: 240px; /* 2x LC width + RC width */
background-color:AliceBlue;
font-family:Arial, sans-serif;
}
#container {
padding-left: 120px; /* LC width */
padding-right: 0px; /* RC width */
margin:0 auto;
}
#container .column {
position: relative;
float: left;
}
#center {
width: 100%;
background-color:#FFFFFF;
}
#center h1{
margin:3px;
margin-bottom:5px;
margin-left:20px;
}
#left {
width: 120px; /* LC width */
right: 120px; /* LC width */
margin-left: -100%;
background-color:CornflowerBlue;
/*background-color:#000000;*/
height:1700px;
}
#header {
clear: both;
background-color:AliceBlue;
}
#header h1{
display:inline-block;
font-size:30pt;
}
#footer {
clear: both;
background-color:AliceBlue;
}
/*** IE6 Fix ***/
* html #left {
left: 120px; /* RC width */
}
/*************************************************************
* Block that contains the parameters floats in a fixed place
* (would be an issue if the block becomes too big
*************************************************************/
#parameter_block{
position: fixed;
width: 120px; /* LC width */
margin-left: -120px;
padding:3px;
float:none;
}
/* Hack to get the sliding parameter block working with firefox*/
@-moz-document url-prefix() {
#parameter_block{
margin-left: 0px;
}
}
/*************************************************************
* Styles to controll the parameter and value formats
*************************************************************/
#parameter_block h1{
font-size:14pt;
display:inline;
}
.parameter {
color:#FFFFFF;
font-weight:normal;
font-size:12pt;
}
.parameter a.value{
text-decoration:none;
color:LightGray;
font-weight:normal;
font-size:12pt;
}
.parameter a.current_value{
text-decoration:none;
font-weight:bold;
color:#FFFFFF;
font-size:14pt;
}
.parameter h1{
font-size:14pt;
margin-bottom:0px;
color:DarkBlue;
}
table.value_table {
border-collapse:separate;
border-spacing:5px 0px;
}
/*************************************************************
* Styles to the plot table and information
*************************************************************/
table.plots{
width: 1100px;
border-collapse:separate;
border-spacing:15px 10px;
}
table.plots td{
width: 300px;
}
img.plot{
width:100%;
height:auto;
max-width:360px;
}
#header_table {
border-collapse:separate;
border-spacing:50px 0px;
}
#information{
font-size:11pt;
}
#information p{
margin:0px;
}
#information h1{
color:DarkBlue;
margin:0px;
margin-bottom:3px;
margin-top:9px;
}