-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (89 loc) · 1.63 KB
/
style.css
File metadata and controls
120 lines (89 loc) · 1.63 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
body {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
background-color: black;
}
#logo_div {
z-index: 100;
position: fixed;
right: 1%;
bottom: 1%;
width: 5%;
}
#logo {
width: 100%;
}
#upload_info {
font-size: 0.75em;
-webkit-transition-property: font-size;
-webkit-transition-duration: 0.1s;
-webkit-transition-timing-function: linear;
transition-property: font-size;
transition-duration: 0.1s;
transition-timing-function: linear;
}
#upload_info:hover {
font-size: 2em;
}
#parse_info {
font-size: 0.75em;
-webkit-transition-property: font-size;
-webkit-transition-duration: 0.1s;
-webkit-transition-timing-function: linear;
transition-property: font-size;
transition-duration: 0.1s;
transition-timing-function: linear;
}
#parse_info:hover {
font-size: 2em;
}
#ray_info {
font-size: 0.75em;
background-color: white;
color: black;
border-size: 2px 2px 2px 2px;
border-style: solid;
border-color: #FF0000;
display: none;
}
#data_div {
display: block;
z-index: 100;
position: fixed;
left: 1%;
top: 1%;
width: 25%;
color: white;
}
#log {
display: block;
z-index: 100;
position: fixed;
left: 1%;
bottom: 1%;
width: 40%;
color: white;
text-shadow: 2px 2px #000000;
}
#controls {
z-index: 100;
position: fixed;
right: 0%;
top: 1%;
width: 25%;
color: white;
}
#colors {
z-index: 100;
position: fixed;
right: 0%;
bottom: 12%;
width: 25%;
color: white;
font-size: 0.6em;
}
.framed {
border-style: solid;
border-width: 2px;
border-color: black;
}