forked from cameramanben/LUTCalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.css
120 lines (120 loc) · 2.41 KB
/
ui.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
/*Basic Adjustments */
body { color: #333333; background-color: #eaeaea; padding: 0.25em;}
h1,h2,h3,h4,h5,h6 { text-align: center; }
a { text-decoration: none; background-color: inherit; color: #0000ff; }
th { padding-left:0.75em; padding-right:0.75em; }
p {margin-bottom:0.6em;}
table { margin: 0px auto; }
tr { text-align:center; }
input { margin-left:0.25em; margin-right:0.25em; text-align: center; }
select { margin-left:0.5em; margin-right:0.5em; }
/* Header
-------------------------------------------------------------------------------*/
#titlebar {
position: relative;
width:100%;
text-align: center;
clear:both;
padding-top: 0.1em;
padding-bottom: 0.2em;
color: #ffff00;
background-color: #202090;
z-index:1000;
}
/* Main Section
-------------------------------------------------------------------------------*/
body {
text-align:center;
margin: 0px auto;
}
#javascriptwarning { margin-top:1em; display: block; }
.splash {
position:absolute;
left: 50%;
top: 10em;
background-image: url('img/logo256.png');
margin:0;
padding:0;
margin-left:-10em;
background-size:20em 20em;
width:20em;
height:20em;
}
.splash-hide { display: none; }
.splash div {
padding-top: 7em;
}
.splash h1 {
font-size:2.2em;
color: #ffff00;
text-shadow:
0 0 2px #000000,
0 0 6px #000000,
0 0 8px #505050;
}
.splash h5 {
font-size:1.5em;
color: #ffff00;
text-shadow:
0 0 2px #000000,
0 0 6px #000000,
0 0 8px #505050;
}
#main {
padding-right:0.2em;
width:69em;
margin: 0px auto;
}
#lutcalcform {
margin: 0px auto;
}
#left {
float:left;
}
#right {
float:right;
overflow:auto;
width:35em;
padding-right:1em;
}
/* Footer
-------------------------------------------------------------------------------*/
#footer {
position:relative;
width:100%;
text-align: center;
clear:both;
margin-top:0.9em;
padding-top: 0.1em;
padding-bottom: 0.2em;
color: #ffff00;
background-color: #202090;
z-index:1000;
}
/* Printing options
-------------------------------------------------------------------------------*/
#printable { display: none; }
@media print {
h1 {
font-size: 2em;
font-weight:bold;
}
p {
font-size:1.2em;
}
table {
font-size: 1.2em;
border:0.05em solid #d0d0d0;
}
canvas {margin:0px auto;}
td {min-width: 3em;}
#printable {
display: block;
text-align:center;
margin: 0px auto;
line-height: 1.8em;
}
#titlebar { display: none; }
#main { display: none; }
#footer { display: none; }
}