canvas.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319
  1. * {
  2. font-family: 'Open Sans', sans-serif;
  3. box-sizing: border-box;
  4. -moz-box-sizing: border-box;
  5. }
  6. html, body {
  7. height: 100%;
  8. }
  9. p {
  10. font-size: 0.95em;
  11. }
  12. pre {
  13. border: none;
  14. background-color: #eceff1;
  15. visibility: hidden;
  16. }
  17. /* ----------------------------------------------
  18. Logo
  19. ----------------------------------------------- */
  20. a.logo {
  21. display: block;
  22. }
  23. a.logo img {
  24. display: block;
  25. width: 60%;
  26. margin: auto;
  27. }
  28. /* ----------------------------------------------
  29. Form header
  30. ----------------------------------------------- */
  31. .form-header {
  32. width: 100%;
  33. margin: 0 auto 2.14em auto;
  34. /* background-color:#546e7a; */
  35. background-color: #eceff1;
  36. border-radius: 0 0 5px 5px;
  37. min-height: 6em;
  38. }
  39. .form-header h1 {
  40. color: #444;
  41. font-size: 1.9em;
  42. text-align: left;
  43. }
  44. .form-header h2 {
  45. font-size: 1.4em;
  46. color: #444;
  47. }
  48. .form-header p {
  49. font-size: 0.9em;
  50. margin-top: 1em;
  51. color: #444;
  52. }
  53. .form-header label {
  54. font-size: 1.1em;
  55. margin-top: 1.8em;
  56. margin-right: 0.3em;
  57. color: #444;
  58. }
  59. .form-header input {
  60. width: 62%;
  61. outline: none;
  62. border: 1px solid #eceff1;
  63. border-radius: 4px;
  64. padding: 0.45em;
  65. }
  66. /* ----------------------------------------------
  67. Jump to
  68. ----------------------------------------------- */
  69. .jump-to {
  70. width: 100%;
  71. margin: -1.14em auto 2.14em auto;
  72. background-color: #eceff1;
  73. border-radius: 5px;
  74. min-height: 6em;
  75. padding: 1em 1em 0.3em 1em;
  76. display: none;
  77. }
  78. .jump-to label {
  79. font-size: 1.1em;
  80. margin-right: 0.3em;
  81. color: #444;
  82. }
  83. .jump-to ul {
  84. list-style-type: none;
  85. padding-left: 0;
  86. }
  87. /* ----------------------------------------------
  88. Saved tags
  89. ----------------------------------------------- */
  90. .saved-tags {
  91. width: 100%;
  92. margin: -1.14em auto 1.14em auto;
  93. background-color: #eceff1;
  94. border-radius: 5px;
  95. padding: 1em 1em 1em 1em;
  96. }
  97. .saved-tags label {
  98. font-size: 1.1em;
  99. margin-right: 1.8em;
  100. color: #444;
  101. }
  102. .saved-tags p {
  103. display: inline;
  104. line-height: 2.25em;
  105. }
  106. /* ----------------------------------------------
  107. DROPDOWN MENU (User DASHBOARD menu)
  108. ----------------------------------------------- */
  109. /* User area button and dropdown menu in the header: only shown when logged in */
  110. .form-header .user-profile {
  111. font-size: 1em;
  112. margin-top: 1.8em;
  113. margin-right: 0.3em;
  114. color: #444;
  115. min-width: 80%;
  116. margin-left: 3.5em;
  117. }
  118. .form-header .user-profile img {
  119. width: 2.6em;
  120. margin-right: 0.5em;
  121. }
  122. .form-header .user-profile button {
  123. padding: 0.2em 1em;
  124. width: 90%;
  125. border: none;
  126. border-radius: 2px;
  127. outline: 0;
  128. background-color: transparent;
  129. transition: all 0.5s;
  130. }
  131. .form-header .user-profile button:hover {
  132. padding: 0.2em;
  133. background-color: #ffffff;
  134. }
  135. /* Bootstrap dropdown classes */
  136. ul.dropdown-menu {
  137. border: none;
  138. border-radius: 2px;
  139. width: 90%;
  140. margin: 0 5%;
  141. box-shadow: none;
  142. background-color: #48585f;
  143. }
  144. ul.dropdown-menu a {
  145. color: #ffffff;
  146. }
  147. /* The button When the drop down menu is open */
  148. .dropdown.open button#dropdownMenu1 {
  149. background-color: #ffffff;
  150. }
  151. /* ----------------------------------------------
  152. Masonry Blocks
  153. ----------------------------------------------- */
  154. .masonry-layout7-5 {
  155. -webkit-column-count: 5;
  156. /* Chrome, Safari, Opera */
  157. -moz-column-count: 5;
  158. /* Firefox */
  159. column-count: 5;
  160. -webkit-column-gap: 0;
  161. /* Chrome, Safari, Opera */
  162. -moz-column-gap: 0;
  163. /* Firefox */
  164. column-gap: 0;
  165. }
  166. .masonry-layout4 {
  167. -webkit-column-count: 4;
  168. /* Chrome, Safari, Opera */
  169. -moz-column-count: 4;
  170. /* Firefox */
  171. column-count: 4;
  172. -webkit-column-gap: 0;
  173. /* Chrome, Safari, Opera */
  174. -moz-column-gap: 0;
  175. /* Firefox */
  176. column-gap: 0;
  177. }
  178. .masonry-layout2 {
  179. -webkit-column-count: 2;
  180. /* Chrome, Safari, Opera */
  181. -moz-column-count: 2;
  182. /* Firefox */
  183. column-count: 2;
  184. -webkit-column-gap: 0;
  185. /* Chrome, Safari, Opera */
  186. -moz-column-gap: 0;
  187. /* Firefox */
  188. column-gap: 0;
  189. }
  190. .masonry-layout__panel {
  191. break-inside: avoid;
  192. padding: 0.36em;
  193. }
  194. .masonry-layout__panel-content {
  195. padding: 5px 4px;
  196. border-radius: 10px;
  197. }
  198. /* ----------------------------------------------
  199. Field content and items
  200. ----------------------------------------------- */
  201. /* Tooltip */
  202. .tooltip-inner {
  203. padding: 7px 10px 7px 10px;
  204. text-align: left;
  205. }
  206. /* The field introduction text */
  207. /*
  208. .intro {
  209. padding: 1em 1.3em 0 1.3em;
  210. color: rgba(0, 0, 0, 0.6);
  211. font-style: italic;
  212. }
  213. */
  214. /* The description text toggler btn */
  215. /*
  216. .intro-toggle {
  217. padding: 0.25em 1.2em;
  218. border: none;
  219. outline: none;
  220. background-color: transparent;
  221. }
  222. */
  223. /* The show/hide text Bootstrap Glyphicon icon */
  224. /*
  225. .intro-toggle-icon {
  226. padding: 0.4em;
  227. font-size: 1em;
  228. }
  229. */
  230. .field-title {
  231. font-size: 1.4em;
  232. margin-left: 0.8em;
  233. line-height: 1.5;
  234. }
  235. .field-title a {
  236. float: right;
  237. color: rgb(51, 51, 51);
  238. }
  239. .field-title .glyphicon-question-sign {
  240. margin: 0.225em 0.5em 0 0;
  241. }
  242. .field-title .glyphicon-question-sign:hover {
  243. color: #ffffff !important;
  244. }
  245. /* Item list in the field */
  246. ul.item_list {
  247. list-style-type: none;
  248. padding-left: 0;
  249. width: 100%;
  250. /* To make a place holder for empty lists. Being able to drop cards in empty fields */
  251. min-height: 0.5em;
  252. }
  253. li.added_item {
  254. width: 100%;
  255. margin: 0.5em auto;
  256. height: auto;
  257. overflow: scroll;
  258. /* cursor: move; */
  259. cursor: text;
  260. }
  261. /* ul.item_list textarea { */
  262. ul.item_list div {
  263. font-size: 0.95em;
  264. margin-left: 14px;
  265. margin-bottom: 5px;
  266. padding: 0.5em 0.5em 0.5em 1em;
  267. border-radius: 0.35em;;
  268. border: 1px solid rgba(255, 255, 255, 0.2);
  269. width: 85% !important;
  270. outline: none;
  271. display: inline-block;
  272. background-color: rgba(255, 255, 255, 0.6);
  273. /* For auto expansion jQuery code */
  274. box-sizing: padding-box;
  275. overflow: hidden;
  276. }
  277. /* ----------------------------------------------
  278. List item handles: Bootstrap Glyphicon
  279. ----------------------------------------------- */
  280. ul.item_list span.glyphicon {
  281. border-radius: 100%;
  282. margin-right: 10px;
  283. color: #ffffff;
  284. font-size: 1.2em;
  285. cursor: pointer;
  286. }
  287. span.glyphicon:hover {
  288. color: rgba(0, 0, 0, 0.5);
  289. }
  290. /* The handle icon for each item */
  291. span.handle {
  292. margin-left: 14px;
  293. /* cursor: move; */
  294. }
  295. /* Placeholder for sorting items */
  296. .sort-placeholder {
  297. border-radius: 0.35em;
  298. background-color: rgba(40, 40, 40, 0.35);
  299. width: 85%;
  300. height: 2.5em;
  301. padding: 0.5em 0.5em;
  302. margin-left: 1em;
  303. }
  304. /* ----------------------------------------------
  305. Tag selected term link
  306. ----------------------------------------------- */
  307. p.tag-selected-term {
  308. margin-top: 20px;
  309. display: none;
  310. }
  311. p.tag-selected-term a {
  312. color: #ffffff;
  313. font-size: 1.05em;
  314. margin-left: 1em;
  315. margin-top: 2em;
  316. padding: 1em 1em 1em 2em;
  317. background-image: url('../icons/tag.svg');
  318. background-size: 2.2em;
  319. background-position: left;
  320. background-repeat: no-repeat;
  321. }
  322. /* ----------------------------------------------
  323. USER INPUT:
  324. Add new items in each field
  325. ----------------------------------------------- */
  326. .user-input {
  327. width: 100%;
  328. margin-left: 1em;
  329. margin-top: 2em;
  330. padding-bottom: 1.5em;
  331. display: none;
  332. /* Shown (slide up and down) by jQuery when adding ideas */
  333. }
  334. /* The div containing all the user input things */
  335. .add_box {
  336. /* Make room for the absolutely positioned div at the buttom each card always keeping a distance from the buttom of the card (as high as the height of the absolutely positined icon div + some distance) */
  337. padding-bottom: 5.3em;
  338. }
  339. /* Add an idea link */
  340. a.add-idea {
  341. color: #ffffff;
  342. font-size: 1.05em;
  343. margin-left: 1em;
  344. margin-top: 2em;
  345. padding: 1em 1em 1em 2em;
  346. background-image: url('../icons/lightbulb.svg');
  347. background-size: 1.4em;
  348. background-position: left;
  349. background-repeat: no-repeat;
  350. }
  351. /* Textarea of a new item input */
  352. /* textarea.new_item { */
  353. .new_item {
  354. width: 90%;
  355. border: 1px solid #ffffff;
  356. border-radius: 0.35em;
  357. outline: none;
  358. padding-left: 0.5em;
  359. /* for auto expantion jQuery code */
  360. box-sizing: border-box;
  361. overflow: hidden;
  362. }
  363. /* The add button */
  364. .add_btn {
  365. background-color: transparent;
  366. color: #ffffff;
  367. padding: 0.25em 1.2em;
  368. border: 0.12em solid #ffffff;
  369. border-radius: 0.5em;
  370. }
  371. .add_btn:hover {
  372. color: #37474f;
  373. border-color: #37474f;
  374. }
  375. li.added_item span {
  376. display: inline;
  377. margin-top: 5em;
  378. }
  379. /* textarea.expandable { */
  380. .expandable {
  381. box-sizing: border-box;
  382. /* remove the user resizing for the text fields */
  383. resize: none;
  384. /* display: inline-block; */
  385. width: 75% !important;
  386. }
  387. .user-input span.chars {
  388. font-size: 1.1em;
  389. color: rgba(255, 255, 255, 0.7);
  390. }
  391. /* Tag */
  392. a.tag {
  393. background-color: rgba(55, 71, 79, 0.5);
  394. color: #ffffff;
  395. padding: 1px 2px;
  396. border: 1px solid rgba(0, 0, 0, 0.1);
  397. text-decoration: none;
  398. white-space: nowrap;
  399. }
  400. a.tag:hover {
  401. background-color: rgba(255, 255, 255, 0.5);
  402. color: rgba(55, 71, 79, 0.5);
  403. padding: 1px 2px;
  404. border: 1px solid rgba(0, 0, 0, 0.1);
  405. text-decoration: none;
  406. cursor: pointer;
  407. }
  408. /* Background shadow on all types of popups */
  409. div#shadow {
  410. display: none;
  411. width: 100%;
  412. height: 100%;
  413. position: fixed;
  414. top: 0;
  415. left: 0;
  416. z-index: 2;
  417. background-color: rgba(0, 0, 0, 0.5);
  418. }
  419. /* ----------------------------------------------
  420. Move window and tag windows
  421. ----------------------------------------------- */
  422. div.window {
  423. position: fixed;
  424. z-index: 3;
  425. top: 20%;
  426. border-radius: 10px;
  427. padding: 1em 1.5em 1em 1em;
  428. background-color: rgba(236, 239, 241, 0.95);
  429. display: none;
  430. }
  431. div.window button.close {
  432. outline: 0;
  433. position: relative;
  434. top: -8px;
  435. font-size: 2.5em;
  436. }
  437. div.window h2 {
  438. margin: 0 0 0.4em 0;
  439. font-size: 1.4em;
  440. line-height: 1.5;
  441. }
  442. div.window p {
  443. font-size: 0.95em;
  444. }
  445. /* ----------------------------------------------
  446. Move window
  447. ----------------------------------------------- */
  448. div#move-window {
  449. left: 35%;
  450. width: 30%;
  451. }
  452. div#move-window .move-window-button {
  453. background-color: transparent;
  454. color: rgb(51, 51, 51);
  455. padding: 0.25em 1.2em;
  456. border: 0.12em solid rgb(51, 51, 51);
  457. border-radius: 0.5em;
  458. }
  459. div#move-window .move-window-button:hover {
  460. color: #ffffff;
  461. border-color: #ffffff;
  462. }
  463. div#move-window h2 {
  464. }
  465. div#move-window ul {
  466. list-style-type: none;
  467. padding-left: 0;
  468. margin-bottom: 0;
  469. }
  470. /* ----------------------------------------------
  471. Tag window
  472. ----------------------------------------------- */
  473. div#tag-window {
  474. width: 75%;
  475. max-height: 80%;
  476. overflow: scroll;
  477. /* Center window horizontally and vertically */
  478. top: 50%;
  479. left: 50%;
  480. transform: translate(-50%, -50%);
  481. }
  482. /*
  483. div#tag-window h2#tag-description {
  484. }
  485. */
  486. div#tag-window textarea#tag-description {
  487. font-size: 0.95em;
  488. outline: none;
  489. width: 100%;
  490. border: 1px solid #ffffff;
  491. border-radius: 0.35em;
  492. margin: 0 0 0.75em 0;
  493. padding-left: 0.5em;
  494. resize: none;
  495. color: rgb(117, 117, 117);
  496. }
  497. div#tag-window span.chars {
  498. font-size: 1.1em;
  499. color: rgb(117, 117, 117);
  500. }
  501. div#tag-window .tag-window-button {
  502. background-color: transparent;
  503. color: rgb(51, 51, 51);
  504. padding: 0.25em 1.2em;
  505. border: 0.12em solid rgb(51, 51, 51);
  506. border-radius: 0.5em;
  507. }
  508. div#tag-window .tag-window-button:hover {
  509. color: #ffffff;
  510. border-color: #ffffff;
  511. }
  512. div#tag-window #delete-tag {
  513. display: none;
  514. }
  515. div#tag-window h2.similar-tags {
  516. margin: 0.95em 0 -0.2em 0;
  517. }
  518. div#tag-window p.similar-tags-tag {
  519. margin: 0.95em 0 0.4em 0;
  520. }
  521. div#tag-window p.similar-tags-description {
  522. margin: 0;
  523. }
  524. div#tag-window p.similar-tags-description-none {
  525. margin: 0.25em 0 0 0;
  526. display: none;
  527. }
  528. div#tag-window p.similar-tags-username {
  529. margin: 0;
  530. font-size: 0.75em;
  531. }
  532. /* ----------------------------------------------
  533. Field bottom area
  534. ----------------------------------------------- */
  535. div.card {
  536. position: relative;
  537. }
  538. .field-bottom {
  539. background-color: rgba(0, 0, 0, 0.25);
  540. border-radius: 0 0 10px 10px;
  541. height: 40px;
  542. bottom: 0;
  543. position: absolute;
  544. left: 0;
  545. width: 100%;
  546. }
  547. .field-bottom > img[src*=field] {
  548. width: 25px;
  549. height: 25px;
  550. margin-top: 7px;
  551. margin-left: 10px;
  552. }
  553. .field-bottom > img[src*=number] {
  554. float: right;
  555. width: 25px;
  556. height: 18px;
  557. margin-top: 11px;
  558. margin-right: 10px;
  559. }
  560. /* ----------------------------------------------
  561. FORM Import & Export buttons
  562. ----------------------------------------------- */
  563. .imp-exp-btn {
  564. margin-top: 2.5em;
  565. padding-left: 5px;
  566. padding-right: 5px;
  567. }
  568. button.json_exp, button.share_canvas, .pdf_exp {
  569. border: none;
  570. border-radius: 0.5em;
  571. padding: 1em 0;
  572. width: 60%;
  573. outline: none;
  574. }
  575. button.json_exp:hover, button.share_canvas:hover {
  576. opacity: 0.6;
  577. }
  578. .pdf_exp:hover {
  579. text-decoration: underline;
  580. }
  581. button.json_exp {
  582. background-color: #aed581;
  583. margin: 1em auto 0 auto;
  584. }
  585. button.share_canvas {
  586. background-color: #a67de0;
  587. margin: 0.5em auto 0.4em auto;
  588. }
  589. .pdf_exp {
  590. background-color: #85ade5;
  591. margin: 0.5em auto 0.4em auto;
  592. }
  593. /* The sign up or login to save link for unregistered users */
  594. a.login-to-save {
  595. display: block;
  596. padding: 1em;
  597. color: #444;
  598. border: none;
  599. border-radius: 0.5em;
  600. padding: 1em 0;
  601. width: 60%;
  602. outline: none;
  603. margin: 1em auto 0 auto;
  604. background-color: #aed581;
  605. }
  606. /* The save canvas PHP under the save/export buttons */
  607. .save-canvas-feedback p {
  608. text-align: center;
  609. color: #15af97;
  610. }
  611. .save-canvas-feedback span {
  612. color: #15af97;
  613. margin-right: 0.4em;
  614. }
  615. .save-canvas-feedback-fail p {
  616. text-align: center;
  617. color: #37474f;
  618. }
  619. .save-canvas-feedback-fail span {
  620. color: #37474f;
  621. margin-right: 0.4em;
  622. }
  623. /* Sharing the canvas */
  624. /* The share canvas button */
  625. .share_canvas{
  626. }
  627. .share_canvas_email{
  628. display: none;
  629. }
  630. .share_canvas_email input{
  631. width: 80%;
  632. padding: 1em;
  633. border-radius: 5px;
  634. border: 1px solid #444;
  635. }
  636. .share_canvas_email input:focus{
  637. outline: none;
  638. }
  639. /* The send btn */
  640. .share_canvas_send{
  641. border: none;
  642. border-radius: 0.5em;
  643. padding: 1em 0;
  644. width: 25%;
  645. outline: none;
  646. background-color: #546e7a;
  647. color: #ffffff;
  648. }
  649. /* ----------------------------------------------
  650. Footer
  651. ----------------------------------------------- */
  652. footer {
  653. font-size: 1em;
  654. margin-top: 2em;
  655. padding: 1.5em;
  656. background-color: #37474f;
  657. color: #ffffff;
  658. }
  659. footer .license a {
  660. color: #759BCF;
  661. }
  662. footer .license {
  663. margin: 0.5em auto 1.8em auto;
  664. }
  665. footer .contact p {
  666. color: #18AE90;
  667. }
  668. footer .contact h2 {
  669. color: #6bb5b4;
  670. }
  671. footer p.ethics-copy.terms, footer p.ethics-copy.privacy {
  672. text-decoration: none;
  673. padding: 0 0.5em;
  674. display: inline-block;
  675. }
  676. footer p.cc {
  677. margin-top: 2.8em;
  678. }
  679. footer p.terms, footer p.privacy {
  680. margin: 1.9em auto;
  681. }
  682. footer .privacy a {
  683. color: #a67de0;
  684. }
  685. footer .terms a {
  686. color: #aed581;
  687. }
  688. /* Footer license icons */
  689. footer .license-icons ul {
  690. list-style-type: none;
  691. margin-left: 0;
  692. padding-left: 0;
  693. }
  694. footer .license-icons li {
  695. display: inline-block;
  696. margin: 1.2em 0.2em;
  697. }
  698. footer .license-icons ul img {
  699. width: 3.5em;
  700. }
  701. /* ----------------------------------------------
  702. Dialog windows
  703. ----------------------------------------------- */
  704. div.dialog {
  705. display: none;
  706. width: 26%;
  707. position: fixed;
  708. top: 37%;
  709. left: 37%;
  710. font-family: 'Open Sans', sans-serif;
  711. z-index: 2;
  712. background-color: rgba(236, 239, 241, 0.95);
  713. border-radius: 5px;
  714. min-height: 150px;
  715. }
  716. div.dialog h2 {
  717. font-size: 1.4em;
  718. margin: 0;
  719. color: #444;
  720. }
  721. div.dialog p {
  722. font-size: 0.95em;
  723. color: rgb(51, 51, 51);
  724. }
  725. div.dialog button {
  726. position: relative;
  727. top: -8px;
  728. font-size: 2.5em;
  729. outline: 0;
  730. color: #444;
  731. float: right;
  732. }
  733. div.dialog-header {
  734. background-color: rgb(200, 200, 200);
  735. padding: 0.65em 0.75em 0.65em 0.75em;
  736. border-radius: 5px 5px 0 0;
  737. width: 100%;
  738. }
  739. div.dialog-content {
  740. padding: 0.75em 1.5em 0.75em 0.75em;
  741. }
  742. /* ----------------------------------------------
  743. Masonry Colors (ADAPT)
  744. ----------------------------------------------- */
  745. .bg--blue {
  746. background-color: #7297ce;
  747. background-color: #85ade5;
  748. }
  749. .bg--darkblue {
  750. background-color: #7986cb;
  751. background-color: #8b99e0;
  752. }
  753. .bg--green {
  754. /* background-color: #94c356;
  755. background-color: #9dc963; */
  756. background-color: #aed581;
  757. }
  758. .bg--seagreen {
  759. /* background-color: #48D1CC; */
  760. background-color: #6bb5b4;
  761. }
  762. .bg--purple {
  763. /* background-color: #59358c; */
  764. background-color: #a281d1;
  765. }
  766. .bg--green1 {
  767. /* background-color: #15af97; */
  768. background-color: #29bca4;
  769. }
  770. .bg--x {
  771. background-color: #ce93d8;
  772. }
  773. .bg--mineral {
  774. background-color: #607d8b;
  775. }
  776. /* ================================================
  777. MEDIA QUERIES
  778. ================================================= */
  779. /* ----------------- 1 COL ----------------- */
  780. @media (max-width: 499px) {
  781. .masonry-layout7-5 {
  782. column-count: 1;
  783. column-gap: 0;
  784. }
  785. .masonry-layout4 {
  786. column-count: 1;
  787. column-gap: 0;
  788. }
  789. .masonry-layout2 {
  790. column-count: 1;
  791. column-gap: 0;
  792. }
  793. /* Adjust the height of culumns to maintain the layout */
  794. .field_01, .field_04, .field_09, .field_06 {
  795. min-height: 250px;
  796. }
  797. .field_03, .field_05, .field_02 {
  798. min-height: 250px;
  799. }
  800. .field_07, .field_08 {
  801. min-height: 250px;
  802. }
  803. /* Adjusting textarea heights */
  804. /* .added_item textarea { */
  805. .added_item div {
  806. height: 8em;
  807. }
  808. /* Dialog */
  809. div.dialog {
  810. width: 60%;
  811. left: 20%;
  812. }
  813. /* Form Header */
  814. .form-header {
  815. width: 100%;
  816. padding-bottom: 2em;
  817. }
  818. .form-header h1 {
  819. margin-bottom: 1em;
  820. }
  821. .form-header label {
  822. margin-top: 0.6em;
  823. display: block;
  824. text-align: left;
  825. }
  826. .form-header input {
  827. width: 95%;
  828. display: block;
  829. }
  830. .form-header p {
  831. margin-top: 1.85em;
  832. }
  833. /* Jump to */
  834. .jump-to-click-area {
  835. position: fixed;
  836. top: 0;
  837. margin-left: -15px;
  838. height: 48px;
  839. width: 100%;
  840. z-index: 2;
  841. cursor: pointer;
  842. display: none;
  843. }
  844. .jump-to-click-area-toggle {
  845. display: block;
  846. }
  847. .jump-to {
  848. width: 100%;
  849. overflow: hidden;
  850. min-height: 64px;
  851. border-radius: 5px;
  852. display: block;
  853. }
  854. .jump-to-toggle {
  855. /* display: none; */
  856. position: fixed;
  857. top: 0;
  858. z-index: 1;
  859. margin-left: -15px;
  860. border-radius: 0;
  861. padding-top: 2em;
  862. }
  863. /*
  864. .jump-to-list {
  865. }
  866. */
  867. .jump-to-list-toggle {
  868. display: none;
  869. }
  870. .jump-to hr {
  871. color: rgb(222, 222, 222);
  872. margin-top: 0.2em;
  873. margin-bottom: 0.2em;
  874. margin-left: auto;
  875. margin-right: auto;
  876. border-style: solid;
  877. border-width: 1px;
  878. }
  879. .jump-to ul {
  880. margin-top: 5px;
  881. width: 110%;
  882. margin-left: -15px;
  883. margin-bottom: -5px;
  884. padding-top: 5px;
  885. padding-left: 15px;
  886. padding-bottom: 10px;
  887. }
  888. .jump-to-img {
  889. margin-right: 5px;
  890. height: 18px;
  891. width: 18px;
  892. display: none;
  893. }
  894. .jump-to-img-toggle {
  895. display: inline;
  896. }
  897. /*
  898. .jump-to .jump-to-arrow {
  899. display: inline-block;
  900. }
  901. */
  902. /*
  903. .jump-to label {
  904. cursor: pointer;
  905. }
  906. */
  907. .jump-to-arrow-90 {
  908. transform: rotate(90deg);
  909. transition: .3s;
  910. }
  911. .jump-to-arrow-0 {
  912. transform: rotate(0deg);
  913. transition: .3s;
  914. }
  915. /* Saved tags */
  916. .saved-tags {
  917. padding: 1em 1em 0.3em 1em;
  918. }
  919. .saved-tags label {
  920. margin-right: 0.3em;
  921. }
  922. .saved-tags p {
  923. display: block;
  924. }
  925. /* Move window */
  926. div#move-window {
  927. left: 15%;
  928. width: 70%;
  929. }
  930. /* Tag window */
  931. div#tag-window textarea#tag-description {
  932. width: 100%;
  933. }
  934. /* User area button and dropdown menu in the header: only shown when logged in */
  935. .form-header .user-profile {
  936. margin-left: 0;
  937. width: 95%;
  938. }
  939. /* The button When the drop down menu is open */
  940. .dropdown button#dropdownMenu1 {
  941. width: 100%;
  942. margin: auto;
  943. }
  944. /* Bootstrap dropdown classes */
  945. ul.dropdown-menu {
  946. margin-left: 0;
  947. width: 100%;
  948. margin: auto;
  949. }
  950. }
  951. /* ----------------- 2 COL ----------------- */
  952. @media (min-width: 500px) and (max-width: 934px) {
  953. .masonry-layout7-5 {
  954. column-count: 2;
  955. column-gap: 0;
  956. }
  957. .masonry-layout4 {
  958. column-count: 2;
  959. column-gap: 0;
  960. }
  961. /* Adjust the height of culumns to maintain the layout */
  962. .field_01, .field_04, .field_09, .field_06 {
  963. min-height: 460px;
  964. }
  965. .field_02 {
  966. min-height: 930px;
  967. }
  968. .field_03, .field_05 {
  969. min-height: 460px;
  970. }
  971. .field_07, .field_08 {
  972. min-height: 460px;
  973. }
  974. /* Adjusting textarea heights */
  975. /* .added_item textarea { */
  976. .added_item div {
  977. height: 8em;
  978. }
  979. /* Dialog */
  980. div.dialog {
  981. width: 46%;
  982. left: 27%;
  983. }
  984. /* Form Header */
  985. .form-header {
  986. width: 100%;
  987. }
  988. .form-header h1 {
  989. text-align: center;
  990. }
  991. .form-header label {
  992. margin-top: 1.8em;
  993. display: block;
  994. text-align: center;
  995. }
  996. .form-header input {
  997. width: 50%;
  998. display: block;
  999. margin: auto;
  1000. }
  1001. .form-header p {
  1002. margin-top: 1.85em;
  1003. }
  1004. a.logo img {
  1005. display: block;
  1006. width: 40%;
  1007. margin: auto;
  1008. }
  1009. /* Saved tags */
  1010. .saved-tags {
  1011. padding: 1em 1em 0.3em 1em;
  1012. }
  1013. .saved-tags label {
  1014. margin-right: 0.3em;
  1015. }
  1016. .saved-tags p {
  1017. display: block;
  1018. }
  1019. /* Move window */
  1020. div#move-window {
  1021. left: 25%;
  1022. width: 50%;
  1023. }
  1024. /* Tag window */
  1025. div#tag-window textarea#tag-description {
  1026. width: 100%;
  1027. }
  1028. /* User area button and dropdown menu in the header: only shown when logged in */
  1029. .form-header .user-profile {
  1030. margin-left: 0;
  1031. width: 50%;
  1032. margin: 2em auto;
  1033. }
  1034. /* The button When the drop down menu is open */
  1035. .dropdown button#dropdownMenu1 {
  1036. width: 60%;
  1037. margin: 0 20%;
  1038. }
  1039. /* Bootstrap dropdown classes */
  1040. ul.dropdown-menu {
  1041. margin-left: 0;
  1042. width: 60%;
  1043. margin: 0 20%;
  1044. }
  1045. }
  1046. /* ----------------- 4 COL Smaller ----------------- */
  1047. @media (min-width: 935px) and (max-width: 991px) {
  1048. .masonry-layout7-5 {
  1049. column-count: 4;
  1050. column-gap: 0;
  1051. }
  1052. .masonry-layout4 {
  1053. column-count: 4;
  1054. column-gap: 0;
  1055. }
  1056. /* Adjust the height of culumns to maintain the layout */
  1057. .field_01, .field_04, .field_09, .field_06 {
  1058. min-height: 500px;
  1059. }
  1060. .field_02 {
  1061. min-height: 1010px;
  1062. }
  1063. .field_03, .field_05 {
  1064. min-height: 500px;
  1065. }
  1066. .field_07, .field_08 {
  1067. min-height: 500px;
  1068. }
  1069. /* Dialog */
  1070. div.dialog {
  1071. width: 30%;
  1072. left: 37%;
  1073. }
  1074. /* Form Header */
  1075. .form-header {
  1076. width: 100%;
  1077. }
  1078. .form-header h1 {
  1079. text-align: center;
  1080. }
  1081. .form-header label {
  1082. margin-top: 1.8em;
  1083. display: block;
  1084. text-align: center;
  1085. }
  1086. .form-header input {
  1087. width: 50%;
  1088. display: block;
  1089. margin: auto;
  1090. }
  1091. .form-header p {
  1092. margin-top: 1.85em;
  1093. }
  1094. /* User area button and dropdown menu in the header: only shown when logged in */
  1095. .form-header .user-profile {
  1096. margin-left: 0;
  1097. width: 60%;
  1098. margin: 2em auto;
  1099. transition: all 0.4s;
  1100. }
  1101. /* The button When the drop down menu is open */
  1102. .dropdown button#dropdownMenu1 {
  1103. width: 62%;
  1104. margin: 0 18%;
  1105. }
  1106. /* Bootstrap dropdown classes */
  1107. ul.dropdown-menu {
  1108. margin-left: 0;
  1109. width: 62%;
  1110. margin: 0 18%;
  1111. }
  1112. }
  1113. @media (min-width: 935px) and (max-width: 1153px) {
  1114. /* Adjusting textarea heights */
  1115. /* .added_item textarea { */
  1116. .added_item div {
  1117. height: 8em;
  1118. }
  1119. }
  1120. /* ---------------- 4 COL Large ---------------- */
  1121. @media (min-width: 992px) and (max-width: 1153px) {
  1122. .masonry-layout7-5 {
  1123. column-count: 4;
  1124. column-gap: 0;
  1125. }
  1126. .masonry-layout4 {
  1127. column-count: 4;
  1128. column-gap: 0;
  1129. }
  1130. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1131. /* Adjust the height of culumns to maintain the layout */
  1132. .field_01, .field_04, .field_09, .field_06 {
  1133. min-height: 480px;
  1134. }
  1135. .field_02 {
  1136. min-height: 970px;
  1137. }
  1138. .field_03, .field_05 {
  1139. min-height: 480px;
  1140. }
  1141. .field_07, .field_08 {
  1142. min-height: 480px;
  1143. }
  1144. /* Dialog */
  1145. div.dialog {
  1146. width: 30%;
  1147. left: 37%;
  1148. }
  1149. /* Form Header */
  1150. .form-header {
  1151. width: 100%;
  1152. min-height: 8em;
  1153. }
  1154. .form-header h1 {
  1155. font-size: 1.7em;
  1156. }
  1157. .form-header label {
  1158. margin-top: 1.8em;
  1159. display: block;
  1160. text-align: left;
  1161. }
  1162. .form-header input {
  1163. width: 100%;
  1164. display: block;
  1165. }
  1166. .form-header p {
  1167. margin-top: 2em;
  1168. }
  1169. }
  1170. @media (min-width: 1052px) and (max-width: 1153px) {
  1171. /* Adjusting textarea heights */
  1172. /* .added_item textarea { */
  1173. .added_item div {
  1174. height: 8em;
  1175. }
  1176. .new_item {}
  1177. }
  1178. /* ---------------- 5 COL ---------------- */
  1179. @media (min-width: 1154px) and (max-width: 1650px) {
  1180. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1181. /* Adjust the height of culumns to maintain the layout */
  1182. .field_01, .field_02, .field_09 {
  1183. min-height: 917px;
  1184. }
  1185. .field_03, .field_05 {
  1186. min-height: 428px;
  1187. }
  1188. .field_04, .field_06 {
  1189. min-height: 478px;
  1190. }
  1191. .field_07, .field_08 {
  1192. min-height: 390px;
  1193. }
  1194. }
  1195. @media (min-width: 1154px) and (max-width: 1702px) {
  1196. /* Adjusting textarea heights */
  1197. /* .added_item textarea { */
  1198. .added_item div {
  1199. height: 8.5em;
  1200. }
  1201. .new_item {}
  1202. }
  1203. /* ---------------------------------------------- */
  1204. @media (min-width: 1651px) {
  1205. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1206. /* Adjust the height of culumns to maintain the layout */
  1207. .field_01, .field_02, .field_09 {
  1208. min-height: 775px;
  1209. }
  1210. .field_03, .field_05 {
  1211. min-height: 375px;
  1212. }
  1213. .field_04, .field_06 {
  1214. min-height: 390px;
  1215. }
  1216. .field_07, .field_08 {
  1217. min-height: 340px;
  1218. }
  1219. }
  1220. /* ---------------- Header space bug fix ---------------- */
  1221. @media (min-width: 500px) and (max-width: 991px) {
  1222. .form-header {
  1223. padding-bottom: 30px;
  1224. }
  1225. }
  1226. @media (min-width: 1154px) and (max-width: 1240px) {
  1227. input.proj_title {
  1228. margin-right: -9px;
  1229. }
  1230. }