1 | html,body { |
---|
2 | width: 100%; |
---|
3 | height: 100%; |
---|
4 | } |
---|
5 | |
---|
6 | button.baseBtn { |
---|
7 | -webkit-background-clip: padding-box; |
---|
8 | -webkit-box-align: center; |
---|
9 | background-clip: padding-box; |
---|
10 | border-style: solid; |
---|
11 | border-width: 1px; |
---|
12 | color: black; |
---|
13 | font-family: 'Helvetica Neue', HelveticaNeue, Helvetica-Neue, Helvetica, 'BBAlpha Sans'; |
---|
14 | font-size: 18px; |
---|
15 | font-weight: bold; |
---|
16 | vertical-align: middle; |
---|
17 | margin: 10px; |
---|
18 | height: 34px; |
---|
19 | border-bottom-left-radius: 7px; |
---|
20 | border-bottom-right-radius: 7px; |
---|
21 | border-top-left-radius: 7px; |
---|
22 | border-top-right-radius: 7px; |
---|
23 | width: 240px; |
---|
24 | } |
---|
25 | |
---|
26 | button.whiteBtn{ |
---|
27 | background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(white), color-stop(0.06, #f2f2f2), to(#b7b7b7)); |
---|
28 | border-color: #979797; |
---|
29 | border-bottom-color: #727272; |
---|
30 | } |
---|
31 | |
---|
32 | button.whiteBtnSelected{ |
---|
33 | background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#ffffff), color-stop(0.06, #bbbbbb), to(#fcfcfc)); |
---|
34 | border-color: #979797; |
---|
35 | border-bottom-color: #727272; |
---|
36 | } |
---|
37 | |
---|
38 | #header button { |
---|
39 | position:absolute; |
---|
40 | margin:0; |
---|
41 | } |
---|
42 | |
---|
43 | #navButton { |
---|
44 | width:60px; |
---|
45 | } |
---|
46 | |
---|
47 | #loadDiv { |
---|
48 | position:absolute; |
---|
49 | left:0; |
---|
50 | top:0; |
---|
51 | width:100%; |
---|
52 | height:100%; |
---|
53 | z-index:999; |
---|
54 | } |
---|
55 | #loadDiv { |
---|
56 | display:table; |
---|
57 | font-size: 20px; |
---|
58 | text-align:center; |
---|
59 | background-color:white; |
---|
60 | } |
---|
61 | #loadDiv span { |
---|
62 | display:table-cell; |
---|
63 | vertical-align:middle; |
---|
64 | } |
---|
65 | |
---|
66 | body .mblProgContainer { |
---|
67 | top:45%; |
---|
68 | height: 45px; |
---|
69 | width: 140px; |
---|
70 | margin-left:-70px; |
---|
71 | background-color: #2A2A28; |
---|
72 | border-style: solid; |
---|
73 | border-width: 2px; |
---|
74 | border-color: #666666; |
---|
75 | border-radius: 0.4em; |
---|
76 | -webkit-border-radius: 0.4em; |
---|
77 | -moz-border-radius: 0.4em; |
---|
78 | } |
---|
79 | |
---|
80 | body .mblProgContainer > div { |
---|
81 | height: 100%; |
---|
82 | width: 100%; |
---|
83 | line-height: 45px; |
---|
84 | vertical-align: middle; |
---|
85 | font-size: 20px; |
---|
86 | color: #c2c2c2; |
---|
87 | } |
---|
88 | |
---|
89 | body .mblProg { |
---|
90 | left: 3px; |
---|
91 | top: 3px; |
---|
92 | } |
---|
93 | |
---|
94 | body .mblProgContainer > div::after { |
---|
95 | padding-left: 42px; |
---|
96 | content: "Updating..."; |
---|
97 | } |
---|
98 | |
---|
99 | #jsContent, #htmlContent { |
---|
100 | padding-left:2px; |
---|
101 | } |
---|
102 | |
---|
103 | @media screen and (max-width: 600px) { |
---|
104 | #jsContent, #htmlContent { |
---|
105 | font-size: 14px; |
---|
106 | } |
---|
107 | } |
---|
108 | |
---|
109 | .hidden { |
---|
110 | display:none; |
---|
111 | } |
---|
112 | |
---|
113 | div .navPane { |
---|
114 | width:250px; |
---|
115 | border-right:1px solid black; |
---|
116 | background-color: #C5CCD3; |
---|
117 | z-index:100; |
---|
118 | } |
---|