File tree Expand file tree Collapse file tree 1 file changed +17
-7
lines changed Expand file tree Collapse file tree 1 file changed +17
-7
lines changed Original file line number Diff line number Diff line change 8
8
< body >
9
9
10
10
< style >
11
+ * {
12
+ box-sizing : border-box;
13
+ }
11
14
# source {
12
15
position : absolute;
13
16
top : 50px ;
14
17
left : 0 ;
15
- width : 50% ;
18
+ width : calc ( 50% - 1 px ) ;
16
19
height : calc (100% - 50px );
17
20
}
18
21
# result {
24
27
}
25
28
# source-dropdown {
26
29
position : absolute;
27
- top : 10 px ;
28
- left : 10 px ;
30
+ top : 0 ;
31
+ width : calc ( 50 % - 1 px ) ;
29
32
z-index : 100 ;
33
+ padding : 10px ;
34
+ background : # 222 ;
35
+ text-align : center;
30
36
}
31
37
# result-dropdown {
32
38
position : absolute;
33
- top : 10px ;
34
- left : calc (50% + 10px );
39
+ top : 0 ;
40
+ left : calc (50% );
41
+ width : 50% ;
42
+ padding : 10px ;
35
43
z-index : 100 ;
44
+ background : # 222 ;
45
+ text-align : center;
36
46
}
37
47
select {
38
48
background : # 333 ;
48
58
</ style >
49
59
50
60
< div id ="source-dropdown ">
51
- < label for ="decoder-select "> Encoder: </ label >
61
+ < label for ="decoder-select "> Encoder</ label >
52
62
< select id ="decoder-select ">
53
63
< option value ="GLSL "> GLSL</ option >
54
64
</ select >
55
65
</ div >
56
66
< div id ="result-dropdown ">
57
- < label for ="encoder-select "> Decoder: </ label >
67
+ < label for ="encoder-select "> Decoder</ label >
58
68
< select id ="encoder-select ">
59
69
< option value ="TSL "> TSL</ option >
60
70
< option value ="WGSL "> WGSL</ option >
You can’t perform that action at this time.
0 commit comments