default.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043
  1. body {
  2. font-family: 'Source Sans Pro', 'Trebuchet MS', Arial;
  3. font-size: 14px;
  4. color: #2c2c2c;
  5. -webkit-font-smoothing: antialiased;
  6. text-rendering: optimizeLegibility;
  7. -webkit-font-feature-settings: "kern";
  8. -moz-font-feature-settings: "kern";
  9. -moz-font-feature-settings: "kern=1";
  10. font-feature-settings: "kern" 1;
  11. font-kerning: normal;
  12. overflow: hidden;
  13. }
  14. a {
  15. cursor: pointer;
  16. }
  17. input[type="radio"], input[type="checkbox"] {
  18. margin: 0px 9px 0px 0px;
  19. vertical-align: bottom;
  20. }
  21. input {
  22. -webkit-box-sizing: border-box;
  23. -moz-box-sizing: border-box;
  24. box-sizing: border-box;
  25. }
  26. input[type=text]::-ms-clear {
  27. width: 0;
  28. height: 0;
  29. display: none;
  30. }
  31. #outerContainer {
  32. position: absolute;
  33. width:1000px;
  34. height:1500px;
  35. overflow: hidden;
  36. display: flex;
  37. }
  38. #mobileControlFrameContainer {
  39. position: absolute;
  40. width: 100%;
  41. pointer-events: none;
  42. }
  43. .splitbar {
  44. display: none;
  45. position: absolute;
  46. top: 0px;
  47. width: 3px;
  48. height: 100%;
  49. cursor: ew-resize;
  50. z-index: 5;
  51. user-select: none;
  52. }
  53. .splitbar:hover, .splitbar.active {
  54. background: #cccccc;
  55. }
  56. #lsplitbar {
  57. border-right: 1px solid #cccccc;
  58. }
  59. #rsplitbar {
  60. border-left: 1px solid #cccccc;
  61. }
  62. #mainPanel {
  63. background-color: #d8d8d8;
  64. opacity: 0;
  65. flex: 1;
  66. }
  67. #clippingBounds {
  68. width: 100%;
  69. overflow: hidden;
  70. pointer-events: none;
  71. position: absolute;
  72. z-index: 1;
  73. }
  74. #clippingBounds div {
  75. pointer-events: auto;
  76. }
  77. #clippingBoundsScrollContainer {
  78. position: absolute;
  79. pointer-events: none;
  80. }
  81. #browserOutOfDateNotification {
  82. width: 100%;
  83. height: 289px;
  84. background-color: #e36154;
  85. padding-top: 40px;
  86. color: #FFFFFF;
  87. }
  88. .mobileMode #browserOutOfDateNotification {
  89. padding-top: 15px;
  90. }
  91. #supportedBrowsersListContainer {
  92. border-radius: 5px;
  93. line-height: 1.64;
  94. background-color: #c3463a;
  95. padding-top: 4px;
  96. width: 255px;
  97. margin: auto;
  98. }
  99. .browserName {
  100. display: inline-block;
  101. width: 55%;
  102. font-weight: bold;
  103. margin-left: 18px;
  104. }
  105. .browserSupportedVersion {
  106. display: inline-block;
  107. font-style: italic;
  108. }
  109. #browserOutOfDateNotificationButtons {
  110. display: flex;
  111. justify-content: flex-end;
  112. margin-top: 28px;
  113. }
  114. .mobileMode #browserOutOfDateNotificationButtons {
  115. margin-top: 8px;
  116. }
  117. #updateBrowserButton {
  118. display: inline-block;
  119. width: 330px;
  120. height: 35px;
  121. margin-left: auto;
  122. line-height: 35px;
  123. text-decoration: none;
  124. text-align: center;
  125. border-radius: 9px;
  126. border: solid 1px #FFFFFF;
  127. color: #FFFFFF;
  128. }
  129. #continueToPrototypeButton {
  130. display: inline-block;
  131. text-align: center;
  132. line-height: 37px;
  133. text-decoration: underline;
  134. }
  135. #topPanel {
  136. z-index: 1;
  137. height: 36px;
  138. background-color: #f2f2f2;
  139. border-bottom: 1px solid #cccccc;
  140. user-select: none;
  141. }
  142. .leftPanel, .rightPanel, .mobileOnlyPanel {
  143. position: relative;
  144. background-color: #f2f2f2;
  145. overflow: hidden;
  146. width: 0px;
  147. flex-shrink: 0;
  148. }
  149. .popup, .leftPanel.popup {
  150. position: absolute;
  151. z-index: 20000;
  152. display: none;
  153. background-color: #f2f2f2;
  154. border: solid 1px #bdbcbc;
  155. position: absolute;
  156. box-shadow: 0 1px 2px 0 rgba(87, 87, 87, 0.5);
  157. }
  158. .leftPanel.popup .sitemapHeader, .leftPanel.popup #searchDiv {
  159. display: none;
  160. }
  161. #clipFrameScroll {
  162. }
  163. .splitterMask {
  164. position: absolute;
  165. top: 0;
  166. left: 0;
  167. width: 100%;
  168. height: 100%;
  169. overflow: hidden;
  170. background-image: url(../images/transparent.gif);
  171. z-index: 10000;
  172. -moz-user-select: none;
  173. -webkit-user-select: none;
  174. -ms-user-select: none;
  175. user-select: none;
  176. }
  177. #maximizePanelContainer {
  178. font-size: 4px;
  179. overflow: hidden;
  180. z-index: 1000;
  181. display: none;
  182. }
  183. #maximizePanel {
  184. background-color: #f2f2f2;
  185. cursor: pointer;
  186. }
  187. #maximizePanelContainer, #maximizePanelOver, #maximizePanel {
  188. position:absolute;
  189. left: 0px;
  190. top: 0px;
  191. width: 28px;
  192. height: 36px;
  193. }
  194. #interfaceControlFrameMinimizeContainer {
  195. font-size: 2px; /*for IE*/
  196. text-align: right;
  197. z-index: 100;
  198. height: 36px;
  199. width: 28px;
  200. border-right: solid 1px #cbcbcb;
  201. }
  202. #interfaceControlFrameMinimizeContainer a {
  203. display: inline-block;
  204. width: 28px;
  205. height: 100%;
  206. font-size: 2px;
  207. text-decoration: none;
  208. }
  209. #interfaceControlFrame {
  210. height: 100%;
  211. display: flex;
  212. opacity: 0;
  213. }
  214. #interfaceControlFrameCloseContainer {
  215. display: none;
  216. font-size: 9px;
  217. font-weight: bold;
  218. letter-spacing: 1px;
  219. z-index: 100;
  220. width: 55px;
  221. background-color: #62666b;
  222. text-align: center;
  223. }
  224. #interfaceControlFrameCloseContainer a {
  225. display: inline-block;
  226. width: 55px;
  227. color: #ffffff;
  228. padding: 5px 0px;
  229. }
  230. #inspectControlFrameHeader li {
  231. float: left;
  232. display: block;
  233. width: 42px;
  234. height: 36px;
  235. padding: 4px 5px 4px 5px;
  236. box-sizing: border-box;
  237. -moz-box-sizing: border-box;
  238. -webkit-box-sizing: border-box;
  239. }
  240. #inspectControlFrameHeader li a {
  241. height: 100%;
  242. width: 32px;
  243. display: block;
  244. text-align: center;
  245. outline: none;
  246. text-decoration: none;
  247. white-space: nowrap;
  248. background-color: transparent;
  249. box-sizing: border-box;
  250. -moz-box-sizing: border-box;
  251. -webkit-box-sizing: border-box;
  252. }
  253. .hashover #inspectControlFrameHeader li a:hover {
  254. border-radius: 3px;
  255. background-color: #e6e6e6;
  256. }
  257. /*#inspectControlFrameHeader li a.selected, #inspectControlFrameHeader li a.selected:hover {
  258. background-color: inherit;
  259. }*/
  260. #inspectControlFrameHeaderContainer {
  261. overflow: visible;
  262. }
  263. #inspectControlFrameHeader {
  264. position: relative;
  265. list-style: none;
  266. z-index: 50;
  267. letter-spacing: 1px;
  268. display: flex;
  269. }
  270. #projectControlFrameHeaderContainer {
  271. overflow: visible;
  272. }
  273. #projectControlFrameHeader {
  274. position: relative;
  275. list-style: none;
  276. font-size: 8px;
  277. z-index: 50;
  278. font-weight: bold;
  279. letter-spacing: 1px;
  280. }
  281. #projectControlFrameHeader li {
  282. float: left;
  283. display: block;
  284. width: 28px;
  285. height: 28px;
  286. box-sizing: border-box;
  287. -moz-box-sizing: border-box;
  288. -webkit-box-sizing: border-box;
  289. }
  290. #projectControlFrameHeader li a {
  291. display: block;
  292. height: 100%;
  293. width: 32px;
  294. outline: none;
  295. margin: auto;
  296. text-decoration: none;
  297. color: #ffffff;
  298. white-space: nowrap;
  299. box-sizing: border-box;
  300. -moz-box-sizing: border-box;
  301. -webkit-box-sizing: border-box;
  302. }
  303. .hashover #projectControlFrameHeader li a:hover {
  304. border-radius: 3px;
  305. background-color: #e6e6e6;
  306. }
  307. /*#projectControlFrameHeader li a.selected, #projectControlFrameHeader li a.selected:hover {
  308. background-color: inherit;
  309. }*/
  310. #handoffControlFrameHeaderContainer {
  311. display: none;
  312. }
  313. #handoffControlFrameHeader li {
  314. float: left;
  315. display: block;
  316. width: 44px;
  317. height: 36px;
  318. margin: 0px 3.5px 0px 3.5px;
  319. padding: 4px 6px 4px 6px;
  320. box-sizing: border-box;
  321. -moz-box-sizing: border-box;
  322. -webkit-box-sizing: border-box;
  323. }
  324. #handoffControlFrameHeader li.selected {
  325. padding: 0px;
  326. border-bottom: 2px solid #008dcb;
  327. }
  328. #handoffControlFrameHeader li a {
  329. float: left;
  330. height: 100%;
  331. width: 32px;
  332. display: block;
  333. box-sizing: border-box;
  334. -moz-box-sizing: border-box;
  335. -webkit-box-sizing: border-box;
  336. }
  337. .hashover #handoffControlFrameHeader li a:hover {
  338. border-radius: 3px;
  339. background-color: #e6e6e6;
  340. }
  341. #handoffControlFrameHeader li a.selected {
  342. width: 100%;
  343. /*background-color: inherit;*/
  344. }
  345. #publishContainer {
  346. display: none;
  347. margin: 6px 20.5px 5px;
  348. width: 150px;
  349. height: 25px;
  350. border-radius: 10px;
  351. background-color: #008dcb;
  352. }
  353. #publishContainer.preview {
  354. display: block;
  355. }
  356. #overflowBtn {
  357. order: 5;
  358. }
  359. #overflowMenuButton {
  360. background: url('../images/overflow-icon.svg') no-repeat center center, linear-gradient(transparent,transparent);
  361. }
  362. #overflowMenuButton.selected {
  363. background: url('../images/overflow_icon_off.svg') no-repeat center center, linear-gradient(transparent,transparent);
  364. }
  365. .overflowOptionCheckbox, #projectOptionsHotspotsCheckbox {
  366. position: relative;
  367. border: solid 1px #8c8c8c;
  368. display: inline-block;
  369. }
  370. .overflowOptionCheckbox {
  371. width: 10px;
  372. height: 10px;
  373. margin-right: 14px;
  374. top: 1px;
  375. }
  376. #projectOptionsHotspotsCheckbox {
  377. width: 16px;
  378. height: 16px;
  379. margin-right: 25px;
  380. margin-left: 21px;
  381. top: 2.5px;
  382. }
  383. .overflowOptionCheckbox.selected, #projectOptionsHotspotsCheckbox.selected {
  384. background: url('../images/overflow_checkmark.svg') no-repeat center center, linear-gradient(transparent,transparent);
  385. background-color: #20bba6;
  386. border: solid 1px #20bba6;
  387. background-size: contain;
  388. }
  389. #overflowMenuContainer {
  390. display: none;
  391. flex-direction: column;
  392. top: 36px;
  393. right: 80px;
  394. width: 171px;
  395. border-radius: 2px;
  396. }
  397. #overflowMenuContainer.popup {
  398. display: flex;
  399. }
  400. .showOption {
  401. font-size: 14px;
  402. padding: 9px 0px 0px 15px;
  403. color: #3B3B3B;
  404. }
  405. .showOption:hover {
  406. cursor: pointer;
  407. }
  408. #signInButton {
  409. padding: 0px 20px 0px 20px;
  410. width: 50.8px;
  411. height: 16px;
  412. font-size: 12px;
  413. text-align: center;
  414. line-height: 22px;
  415. }
  416. #accountLoginContainer {
  417. display: none;
  418. right: 220px;
  419. }
  420. .accountOption {
  421. font-size: 12px;
  422. padding: 7px;
  423. line-height: 1.83;
  424. }
  425. /* temporary sign in css (borrowed from feedback9.css*/
  426. .feedbackGreenBtn_Player {
  427. background-color: #74BC68;
  428. border-radius: 2.5px;
  429. box-shadow: inset 0 -1px 0 0 rgba(137, 137, 137, 0.58);
  430. color: #FFFFFF;
  431. cursor: pointer;
  432. font-size: 12px;
  433. height: 25px;
  434. line-height: 25px;
  435. }
  436. .feedbackGreenBtn_Player:hover {
  437. background-color: #58964E;
  438. }
  439. /* Axure Commenter Login w/out pin */
  440. .axureLoginBubble_Player {
  441. background-color: #F2F2F2 !important;
  442. }
  443. .axureLoginBubbleContainer_Player {
  444. padding: 5px;
  445. }
  446. .axureLoginBubbleContainer_Player input {
  447. width: 100%;
  448. padding: 0 5px;
  449. margin-bottom: 10px;
  450. height: 30px;
  451. font-size: 14px;
  452. }
  453. .axureLoginBubbleContainer_Player span {
  454. margin: 0;
  455. }
  456. div.axClearMsgBubble_Player {
  457. padding: 10px;
  458. max-width: 300px;
  459. text-align: center;
  460. }
  461. div.axClearMsgBubble_Player span {
  462. margin: 2px;
  463. white-space: pre-wrap;
  464. white-space: -moz-pre-wrap; /* Firefox */
  465. white-space: -pre-wrap; /* Opera <7 */
  466. white-space: -o-pre-wrap; /* Opera 7 */
  467. word-wrap: break-word; /* IE */
  468. }
  469. #publishButton {
  470. display: block;
  471. width: 95px;
  472. margin: auto;
  473. font-size: 14px;
  474. line-height: 26px;
  475. color: #ffffff;
  476. }
  477. .maximizeCaret {
  478. width: 5px;
  479. height: 5px;
  480. object-fit: contain;
  481. border-right: solid 1.5px #525252;
  482. border-top: solid 1.5px #525252;
  483. margin: auto;
  484. }
  485. .caret {
  486. width: 9px;
  487. height: 7px;
  488. background: url('../images/caret_down.svg') no-repeat center center, linear-gradient(transparent,transparent);
  489. }
  490. .selected .caret {
  491. background: url('../images/caret_down_off.svg') no-repeat center center, linear-gradient(transparent,transparent);
  492. }
  493. .upCaret {
  494. transform: rotate(-45deg);
  495. }
  496. .leftCaret {
  497. transform: rotate(-135deg);
  498. }
  499. .downCaret {
  500. transform: rotate(-225deg);
  501. }
  502. .rightCaret {
  503. transform: rotate(-315deg);
  504. }
  505. #pageSelectDropdown, #adaptiveViewsDropdown {
  506. display: inline-block;
  507. margin-left: 8px;
  508. }
  509. .minimizeIcon, .maximizeIcon {
  510. transition: .25s linear;
  511. position: absolute;
  512. height: 36px;
  513. width: 28px;
  514. }
  515. #minimizeX {
  516. background: url('../images/close_x_minimize.svg') no-repeat center center, linear-gradient(transparent,transparent);
  517. }
  518. #minimizeArrow {
  519. opacity: 0;
  520. transform: rotate(270deg);
  521. background: url('../images/caret_down.svg') no-repeat center center, linear-gradient(transparent,transparent);
  522. }
  523. #maximizeButton {
  524. transform: rotate(-270deg);
  525. background: url('../images/caret_down.svg') no-repeat center center, linear-gradient(transparent,transparent);
  526. }
  527. .collapseHovered #minimizeX {
  528. transition: .25s linear;
  529. opacity: 0;
  530. transform: rotate(-90deg);
  531. }
  532. .collapseHovered #minimizeArrow {
  533. transition: .25s linear;
  534. opacity: 1;
  535. transform: rotate(90deg);
  536. }
  537. #maximizeButton.rotated {
  538. transition: .20s linear;
  539. transform: rotate(-90deg);
  540. }
  541. .expandHovered #minimizeX {
  542. opacity: 0;
  543. }
  544. .expandHovered #minimizeArrow {
  545. opacity: 1;
  546. }
  547. #separatorContainer {
  548. display: none;
  549. line-height: 24px;
  550. height: 36px;
  551. }
  552. #separatorContainer.hasLeft {
  553. display: block;
  554. }
  555. .separator {
  556. display: block;
  557. width: 0px;
  558. height: 100%;
  559. border: solid 0.5px #c4c4c4;
  560. }
  561. #interfacePageNameContainer {
  562. float: left;
  563. cursor: pointer;
  564. }
  565. #sitemapControlFrameContainer{
  566. display: flex;
  567. margin: 4px 6px;
  568. }
  569. .hashover #sitemapControlFrameContainer:hover {
  570. border-radius: 3px;
  571. background-color: #e6e6e6;
  572. }
  573. /*.hashover #sitemapControlFrameContainer.selected:hover {
  574. background-color: inherit;
  575. }*/
  576. #interfaceOverflowMenuContainer {
  577. position: absolute;
  578. display: none;
  579. width: 220px;
  580. background-color: #f2f2f2;
  581. right: 240px;
  582. }
  583. .pageNameHeader {
  584. float: left;
  585. white-space: nowrap;
  586. overflow: hidden;
  587. text-overflow: ellipsis;
  588. max-width: 175px;
  589. margin-left: 10px;
  590. margin-right: 6px;
  591. }
  592. #interfaceAdaptiveViewsContainer {
  593. display: none;
  594. margin: 4px 0px 4px 30.5px;
  595. padding: 0px 6px;
  596. cursor: pointer;
  597. }
  598. #interfaceAdaptiveViewsContainer:hover {
  599. border-radius: 3px;
  600. background-color: #e6e6e6;
  601. }
  602. .adaptiveViewHeader {
  603. white-space: nowrap;
  604. overflow: hidden;
  605. text-overflow: ellipsis;
  606. }
  607. #interfaceAdaptiveViewsButton {
  608. float: left;
  609. max-width: 145px;
  610. }
  611. #interfaceAdaptiveViewsIconButton {
  612. display: none;
  613. float:left;
  614. width: 16px;
  615. margin-right: 6px;
  616. background: url('../images/views-icon.svg') no-repeat center center, linear-gradient(transparent,transparent);
  617. }
  618. #interfaceScaleContainer {
  619. line-height: 36px;
  620. padding: 0px 10px;
  621. cursor: pointer;
  622. }
  623. .scaleHeader {
  624. white-space: nowrap;
  625. overflow: hidden;
  626. text-overflow: ellipsis;
  627. }
  628. #overflowMadeWith {
  629. line-height: 36px;
  630. margin: 0px 12px;
  631. }
  632. #axureLogo {
  633. display: inline-block;
  634. width: 56px;
  635. height: 36px;
  636. padding-top: 1px;
  637. background: url('../images/axure9_logo.svg') no-repeat center center, linear-gradient(transparent,transparent);
  638. }
  639. #overflowMenuContainer > #overflowMadeWith {
  640. line-height: 24px;
  641. border-top: 1px solid #ccc;
  642. margin-top: 7px;
  643. padding-top: 7px;
  644. }
  645. #interfaceControlFrameContainer {
  646. overflow: hidden;
  647. height: 36px;
  648. display: flex;
  649. }
  650. #interfaceControlFrameLeft {
  651. flex: 1;
  652. display: flex;
  653. font-size: 14px;
  654. line-height: 29px;
  655. color: #3b3b3b;
  656. }
  657. #interfaceControlFrameRight {
  658. flex: 1;
  659. display: flex;
  660. justify-content: flex-end;
  661. }
  662. #interfaceControlFrameLogoContainer {
  663. overflow: hidden;
  664. margin-left: auto;
  665. margin-right: auto;
  666. height: 100%;
  667. display: flex;
  668. }
  669. #interfaceControlFrameLogoCaptionContainer {
  670. text-align: center;
  671. margin: 5px 10px 0px 10px;
  672. font-size: 14px;
  673. color: #4a4a4a;
  674. font-weight: bold;
  675. line-height: 30px;
  676. white-space: nowrap;
  677. overflow: hidden;
  678. text-overflow: ellipsis;
  679. }
  680. #previewNotice {
  681. font-size: 14px;
  682. line-height: 36px;
  683. display: none;
  684. }
  685. #logoImage {
  686. margin: 12px;
  687. max-width: 150px;
  688. max-height: 12px;
  689. }
  690. .emptyStateContainer {
  691. text-align: center;
  692. padding: 0px 10px;
  693. margin-top: 32px
  694. }
  695. .emptyStateTitle {
  696. margin: 0px 0px 9px 0px;
  697. font-weight: bold;
  698. }
  699. .emptyStateContent {
  700. line-height: 22px;
  701. }
  702. .dottedDivider {
  703. height: 2px;
  704. margin: 15px 0px 15px 0px;
  705. background: url('../images/divider.png') no-repeat center center;
  706. background: url('../images/divider.svg') no-repeat center center, linear-gradient(transparent,transparent);
  707. }
  708. .mobileMode .dottedDivider {
  709. display: none;
  710. }
  711. .nondottedDivider {
  712. height: 2px;
  713. margin: 9px 0px 9px 0px;
  714. }
  715. .lineDivider {
  716. height: 2px;
  717. margin: 10px 12px 20px 12px;
  718. border-bottom: solid 1px #e7e7e7;
  719. }
  720. .pluginNameHeader {
  721. font-size: 14px;
  722. font-weight: bold;
  723. color: #6d6d6d;
  724. }
  725. .mobileMode .pluginNameHeader {
  726. margin: 14px 12px 13px 12px;
  727. font-size: 18px;
  728. color: #6d6d6d;
  729. }
  730. #projectOptionsHost {
  731. display: flex;
  732. flex-direction: column;
  733. }
  734. #projectOptionsScrollContainer {
  735. overflow: auto;
  736. width: 100%;
  737. -webkit-overflow-scrolling: touch;
  738. flex: 1;
  739. }
  740. div.mobileSubHeader {
  741. font-size: 18px;
  742. font-weight: bold;
  743. color: #4a4a4a;
  744. margin: 0px 12px 11px 15px;
  745. }
  746. div.mobileText, span.mobileText {
  747. font-size: 16px;
  748. color: #4a4a4a;
  749. }
  750. .nativeMenuText {
  751. height: 20px;
  752. font-size: 14px;
  753. text-align: center;
  754. color: #ffffff;
  755. margin-top: 6px;
  756. margin-bottom: 13px;
  757. text-decoration: none;
  758. }
  759. #refreshText, #exitText {
  760. margin-top: 6px;
  761. }
  762. #returnText {
  763. margin-top: 7px;
  764. }
  765. #refreshIcon {
  766. height: 20px;
  767. object-fit: contain;
  768. background: url('../images/refresh.svg') no-repeat center center, linear-gradient(transparent,transparent);
  769. margin-top: 14px;
  770. }
  771. #exitIcon {
  772. height: 19px;
  773. object-fit: contain;
  774. background: url('../images/exit.svg') no-repeat center center, linear-gradient(transparent,transparent);
  775. margin-top: 14px;
  776. }
  777. #returnIcon {
  778. height: 46px;
  779. object-fit: contain;
  780. background: url('../images/return.svg') no-repeat center center, linear-gradient(transparent,transparent);
  781. }
  782. .nativePrototypeButton {
  783. width:50%;
  784. margin-left:auto;
  785. margin-right:auto;
  786. }
  787. .circleBackground {
  788. border-radius: 50%;
  789. behavior: url(PIE.htc);
  790. margin: auto;
  791. box-shadow: 3px 3px 3px 0 rgba(55, 55, 55, 0.5);
  792. }
  793. #returnBackground {
  794. width: 46px;
  795. height: 46px;
  796. background-color: #ffffff;
  797. }
  798. #closeBackground {
  799. width: 61px;
  800. height: 61px;
  801. background-color: #f2f2f2;
  802. }
  803. .closeIconSlash {
  804. width: 35px;
  805. height: 5px;
  806. background-color: #9b9b9b;
  807. position: relative;
  808. margin: auto;
  809. }
  810. #forwardSlash{
  811. top: 28px;
  812. transform: rotate(-45deg);
  813. }
  814. #backwardSlash{
  815. transform: rotate(90deg);
  816. }
  817. .mobilePrototypeControlFrame {
  818. position: absolute;
  819. display: none;
  820. width: 100%;
  821. min-width: 310px;
  822. bottom: 0px;
  823. z-index: 2;
  824. pointer-events: auto;
  825. }
  826. #nativeMenuBlueBackground {
  827. height: 72px;
  828. width: 100%;
  829. background-color: #008fe0;
  830. }
  831. #mHideSidebar {
  832. position: absolute;
  833. width: 10000px;
  834. height: 100%;
  835. background-color: rgba(0, 0, 0, 0.5);
  836. top: 0px;
  837. z-index: 2;
  838. display: none;
  839. left: -60px;
  840. }
  841. /*@media (max-width: 419px) {*/
  842. .mobileMode #topPanel {
  843. display: none;
  844. }
  845. .mobileMode #mainPanel {
  846. -webkit-overflow-scrolling: touch;
  847. }
  848. .mobileMode .leftPanel, .mobileMode .rightPanel, .mobileMode .mobileOnlyPanel {
  849. box-shadow: 0 5.5px 5px 0 rgba(0, 0, 0, 0.24), 0 9px 18px 0 rgba(0, 0, 0, 0.18);
  850. top: 45px;
  851. left: 100px;
  852. }
  853. .mobileMode .leftPanel, .mobileMode .rightPanel, .mobileMode .mobileOnlyPanel {
  854. float: left;
  855. }
  856. .mobileMode .rightPanel {
  857. margin-left: 13px;
  858. }
  859. .mobileMode #maximizePanelContainer {
  860. display: none;
  861. }
  862. /*}*/
  863. @media (max-width: 850px) {
  864. #overflowMenuContainer {
  865. right: 0px;
  866. }
  867. #overflowMadeWith, #publishContainer.preview, #separatorContainer, #separatorContainer.hasLeft {
  868. display: none;
  869. }
  870. #interfaceControlFrameLogoCaptionContainer {
  871. display: none;
  872. }
  873. #interfaceControlFrameContainer {
  874. justify-content: flex-end;
  875. }
  876. #interfaceAdaptiveViewsButton {
  877. display: none;
  878. }
  879. #interfaceAdaptiveViewsIconButton {
  880. display: block;
  881. }
  882. #interfaceAdaptiveViewsContainer {
  883. padding-left: 8px;
  884. }
  885. }
  886. @media (max-width: 700px) {
  887. #interfacePageNameContainer {
  888. display: none;
  889. }
  890. }