Thu, 06 Apr 2017 17:18:24 +0200
finishing first release
17 | 1 | body { |
2 | font-family: Monospace; | |
3 | background-color: #000000; | |
4 | margin: 0px; | |
5 | overflow: hidden; | |
6 | font-size: 10pt; | |
7 | } | |
8 | ||
9 | h2 { | |
10 | font-size: 12pt; | |
11 | } | |
11 | 12 | |
17 | 13 | #info { |
14 | color: #fff; | |
15 | position: absolute; | |
16 | top: 10px; | |
17 | width: 100%; | |
18 | text-align: center; | |
19 | z-index: 100; | |
20 | display:block; | |
11 | 21 | |
17 | 22 | } |
11 | 23 | |
17 | 24 | a { color: skyblue } |
25 | .button { background:#999; color:#eee; padding:0.2em 0.5em; cursor:pointer } | |
26 | .highlight { background:orange; color:#fff; } | |
11 | 27 | |
17 | 28 | span { |
29 | display: inline-block; | |
30 | width: 60px; | |
31 | float: left; | |
32 | text-align: center; | |
33 | } | |
11 | 34 | |
35 | ||
17 | 36 | #sortable1, #sortable2 { |
37 | border: 1px solid #eee; | |
38 | width: 142px; | |
39 | /*min-height: 20px;*/ | |
40 | list-style-type: none; | |
41 | margin: 0; | |
42 | padding: 5px 0 0 0; | |
43 | float: left; | |
44 | margin-right: 10px; | |
45 | } | |
46 | #sortable1 li, #sortable2 li { | |
47 | margin: 0 5px 5px 5px; | |
48 | padding: 5px; | |
49 | font-size: 1.2em; | |
50 | width: 120px; | |
51 | background: rgba(0,0,0,0.5); | |
52 | } | |
11 | 53 | |
54 | .listcontainer { | |
55 | width: 157px; | |
12 | 56 | height: 500px; |
57 | overflow-y: auto; | |
11 | 58 | overflow-x: hidden; |
12 | 59 | float: left; |
60 | } | |
61 | .listcontainer ul { | |
62 | min-height: 420px; | |
13
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
12
diff
changeset
|
63 | } |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
12
diff
changeset
|
64 | .listcontainer ul li:hover { |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
12
diff
changeset
|
65 | cursor: pointer; |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
12
diff
changeset
|
66 | } |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
12
diff
changeset
|
67 | .listcontainer span { |
39fb313ba27c
finished viewer again, giving up with texturing mesh without uv mapping
mdd
parents:
12
diff
changeset
|
68 | |
17 | 69 | } |
70 | ||
18 | 71 | .infocontainer { |
17 | 72 | width: 300px; |
73 | float: right; | |
74 | border: 1px solid #eee; | |
75 | color: #fff; | |
76 | background: rgba(0,0,0,0.5); | |
77 | text-align: left; | |
78 | } | |
18 | 79 | |
80 | .infocontainer img { | |
81 | margin-top: 10px; | |
82 | width: 100%; | |
83 | cursor: pointer; | |
84 | } | |
85 | ||
86 | #infocontainer { | |
87 | padding-left: 10px; | |
88 | padding-bottom: 10px; | |
89 | overflow-y: auto; | |
90 | overflow-x: auto; | |
91 | } | |
17 | 92 | #infocontainer ul { |
93 | margin-left: 0; | |
94 | padding: 0; | |
95 | list-style-position: inside; | |
18 | 96 | } |