canvas.css 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312
  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: #85ade5;
  747. }
  748. .bg--darkblue {
  749. background-color: #8b99e0;
  750. }
  751. .bg--green {
  752. background-color: #aed581;
  753. }
  754. .bg--seagreen {
  755. background-color: #6bb5b4;
  756. }
  757. .bg--purple {
  758. background-color: #a281d1;
  759. }
  760. .bg--green1 {
  761. background-color: #29bca4;
  762. }
  763. .bg--x {
  764. background-color: #ce93d8;
  765. }
  766. .bg--mineral {
  767. background-color: #607d8b;
  768. }
  769. /* ================================================
  770. MEDIA QUERIES
  771. ================================================= */
  772. /* ----------------- 1 COL ----------------- */
  773. @media (max-width: 499px) {
  774. .masonry-layout7-5 {
  775. column-count: 1;
  776. column-gap: 0;
  777. }
  778. .masonry-layout4 {
  779. column-count: 1;
  780. column-gap: 0;
  781. }
  782. .masonry-layout2 {
  783. column-count: 1;
  784. column-gap: 0;
  785. }
  786. /* Adjust the height of culumns to maintain the layout */
  787. .field_01, .field_04, .field_09, .field_06 {
  788. min-height: 250px;
  789. }
  790. .field_03, .field_05, .field_02 {
  791. min-height: 250px;
  792. }
  793. .field_07, .field_08 {
  794. min-height: 250px;
  795. }
  796. /* Adjusting textarea heights */
  797. /* .added_item textarea { */
  798. .added_item div {
  799. height: 8em;
  800. }
  801. /* Dialog */
  802. div.dialog {
  803. width: 60%;
  804. left: 20%;
  805. }
  806. /* Form Header */
  807. .form-header {
  808. width: 100%;
  809. padding-bottom: 2em;
  810. }
  811. .form-header h1 {
  812. margin-bottom: 1em;
  813. }
  814. .form-header label {
  815. margin-top: 0.6em;
  816. display: block;
  817. text-align: left;
  818. }
  819. .form-header input {
  820. width: 95%;
  821. display: block;
  822. }
  823. .form-header p {
  824. margin-top: 1.85em;
  825. }
  826. /* Jump to */
  827. .jump-to-click-area {
  828. position: fixed;
  829. top: 0;
  830. margin-left: -15px;
  831. height: 48px;
  832. width: 100%;
  833. z-index: 2;
  834. cursor: pointer;
  835. display: none;
  836. }
  837. .jump-to-click-area-toggle {
  838. display: block;
  839. }
  840. .jump-to {
  841. width: 100%;
  842. overflow: hidden;
  843. min-height: 64px;
  844. border-radius: 5px;
  845. display: block;
  846. }
  847. .jump-to-toggle {
  848. /* display: none; */
  849. position: fixed;
  850. top: 0;
  851. z-index: 1;
  852. margin-left: -15px;
  853. border-radius: 0;
  854. padding-top: 2em;
  855. }
  856. /*
  857. .jump-to-list {
  858. }
  859. */
  860. .jump-to-list-toggle {
  861. display: none;
  862. }
  863. .jump-to hr {
  864. color: rgb(222, 222, 222);
  865. margin-top: 0.2em;
  866. margin-bottom: 0.2em;
  867. margin-left: auto;
  868. margin-right: auto;
  869. border-style: solid;
  870. border-width: 1px;
  871. }
  872. .jump-to ul {
  873. margin-top: 5px;
  874. width: 110%;
  875. margin-left: -15px;
  876. margin-bottom: -5px;
  877. padding-top: 5px;
  878. padding-left: 15px;
  879. padding-bottom: 10px;
  880. }
  881. .jump-to-img {
  882. margin-right: 5px;
  883. height: 18px;
  884. width: 18px;
  885. display: none;
  886. }
  887. .jump-to-img-toggle {
  888. display: inline;
  889. }
  890. /*
  891. .jump-to .jump-to-arrow {
  892. display: inline-block;
  893. }
  894. */
  895. /*
  896. .jump-to label {
  897. cursor: pointer;
  898. }
  899. */
  900. .jump-to-arrow-90 {
  901. transform: rotate(90deg);
  902. transition: .3s;
  903. }
  904. .jump-to-arrow-0 {
  905. transform: rotate(0deg);
  906. transition: .3s;
  907. }
  908. /* Saved tags */
  909. .saved-tags {
  910. padding: 1em 1em 0.3em 1em;
  911. }
  912. .saved-tags label {
  913. margin-right: 0.3em;
  914. }
  915. .saved-tags p {
  916. display: block;
  917. }
  918. /* Move window */
  919. div#move-window {
  920. left: 15%;
  921. width: 70%;
  922. }
  923. /* Tag window */
  924. div#tag-window textarea#tag-description {
  925. width: 100%;
  926. }
  927. /* User area button and dropdown menu in the header: only shown when logged in */
  928. .form-header .user-profile {
  929. margin-left: 0;
  930. width: 95%;
  931. }
  932. /* The button When the drop down menu is open */
  933. .dropdown button#dropdownMenu1 {
  934. width: 100%;
  935. margin: auto;
  936. }
  937. /* Bootstrap dropdown classes */
  938. ul.dropdown-menu {
  939. margin-left: 0;
  940. width: 100%;
  941. margin: auto;
  942. }
  943. }
  944. /* ----------------- 2 COL ----------------- */
  945. @media (min-width: 500px) and (max-width: 934px) {
  946. .masonry-layout7-5 {
  947. column-count: 2;
  948. column-gap: 0;
  949. }
  950. .masonry-layout4 {
  951. column-count: 2;
  952. column-gap: 0;
  953. }
  954. /* Adjust the height of culumns to maintain the layout */
  955. .field_01, .field_04, .field_09, .field_06 {
  956. min-height: 460px;
  957. }
  958. .field_02 {
  959. min-height: 930px;
  960. }
  961. .field_03, .field_05 {
  962. min-height: 460px;
  963. }
  964. .field_07, .field_08 {
  965. min-height: 460px;
  966. }
  967. /* Adjusting textarea heights */
  968. /* .added_item textarea { */
  969. .added_item div {
  970. height: 8em;
  971. }
  972. /* Dialog */
  973. div.dialog {
  974. width: 46%;
  975. left: 27%;
  976. }
  977. /* Form Header */
  978. .form-header {
  979. width: 100%;
  980. }
  981. .form-header h1 {
  982. text-align: center;
  983. }
  984. .form-header label {
  985. margin-top: 1.8em;
  986. display: block;
  987. text-align: center;
  988. }
  989. .form-header input {
  990. width: 50%;
  991. display: block;
  992. margin: auto;
  993. }
  994. .form-header p {
  995. margin-top: 1.85em;
  996. }
  997. a.logo img {
  998. display: block;
  999. width: 40%;
  1000. margin: auto;
  1001. }
  1002. /* Saved tags */
  1003. .saved-tags {
  1004. padding: 1em 1em 0.3em 1em;
  1005. }
  1006. .saved-tags label {
  1007. margin-right: 0.3em;
  1008. }
  1009. .saved-tags p {
  1010. display: block;
  1011. }
  1012. /* Move window */
  1013. div#move-window {
  1014. left: 25%;
  1015. width: 50%;
  1016. }
  1017. /* Tag window */
  1018. div#tag-window textarea#tag-description {
  1019. width: 100%;
  1020. }
  1021. /* User area button and dropdown menu in the header: only shown when logged in */
  1022. .form-header .user-profile {
  1023. margin-left: 0;
  1024. width: 50%;
  1025. margin: 2em auto;
  1026. }
  1027. /* The button When the drop down menu is open */
  1028. .dropdown button#dropdownMenu1 {
  1029. width: 60%;
  1030. margin: 0 20%;
  1031. }
  1032. /* Bootstrap dropdown classes */
  1033. ul.dropdown-menu {
  1034. margin-left: 0;
  1035. width: 60%;
  1036. margin: 0 20%;
  1037. }
  1038. }
  1039. /* ----------------- 4 COL Smaller ----------------- */
  1040. @media (min-width: 935px) and (max-width: 991px) {
  1041. .masonry-layout7-5 {
  1042. column-count: 4;
  1043. column-gap: 0;
  1044. }
  1045. .masonry-layout4 {
  1046. column-count: 4;
  1047. column-gap: 0;
  1048. }
  1049. /* Adjust the height of culumns to maintain the layout */
  1050. .field_01, .field_04, .field_09, .field_06 {
  1051. min-height: 500px;
  1052. }
  1053. .field_02 {
  1054. min-height: 1010px;
  1055. }
  1056. .field_03, .field_05 {
  1057. min-height: 500px;
  1058. }
  1059. .field_07, .field_08 {
  1060. min-height: 500px;
  1061. }
  1062. /* Dialog */
  1063. div.dialog {
  1064. width: 30%;
  1065. left: 37%;
  1066. }
  1067. /* Form Header */
  1068. .form-header {
  1069. width: 100%;
  1070. }
  1071. .form-header h1 {
  1072. text-align: center;
  1073. }
  1074. .form-header label {
  1075. margin-top: 1.8em;
  1076. display: block;
  1077. text-align: center;
  1078. }
  1079. .form-header input {
  1080. width: 50%;
  1081. display: block;
  1082. margin: auto;
  1083. }
  1084. .form-header p {
  1085. margin-top: 1.85em;
  1086. }
  1087. /* User area button and dropdown menu in the header: only shown when logged in */
  1088. .form-header .user-profile {
  1089. margin-left: 0;
  1090. width: 60%;
  1091. margin: 2em auto;
  1092. transition: all 0.4s;
  1093. }
  1094. /* The button When the drop down menu is open */
  1095. .dropdown button#dropdownMenu1 {
  1096. width: 62%;
  1097. margin: 0 18%;
  1098. }
  1099. /* Bootstrap dropdown classes */
  1100. ul.dropdown-menu {
  1101. margin-left: 0;
  1102. width: 62%;
  1103. margin: 0 18%;
  1104. }
  1105. }
  1106. @media (min-width: 935px) and (max-width: 1153px) {
  1107. /* Adjusting textarea heights */
  1108. /* .added_item textarea { */
  1109. .added_item div {
  1110. height: 8em;
  1111. }
  1112. }
  1113. /* ---------------- 4 COL Large ---------------- */
  1114. @media (min-width: 992px) and (max-width: 1153px) {
  1115. .masonry-layout7-5 {
  1116. column-count: 4;
  1117. column-gap: 0;
  1118. }
  1119. .masonry-layout4 {
  1120. column-count: 4;
  1121. column-gap: 0;
  1122. }
  1123. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1124. /* Adjust the height of culumns to maintain the layout */
  1125. .field_01, .field_04, .field_09, .field_06 {
  1126. min-height: 480px;
  1127. }
  1128. .field_02 {
  1129. min-height: 970px;
  1130. }
  1131. .field_03, .field_05 {
  1132. min-height: 480px;
  1133. }
  1134. .field_07, .field_08 {
  1135. min-height: 480px;
  1136. }
  1137. /* Dialog */
  1138. div.dialog {
  1139. width: 30%;
  1140. left: 37%;
  1141. }
  1142. /* Form Header */
  1143. .form-header {
  1144. width: 100%;
  1145. min-height: 8em;
  1146. }
  1147. .form-header h1 {
  1148. font-size: 1.7em;
  1149. }
  1150. .form-header label {
  1151. margin-top: 1.8em;
  1152. display: block;
  1153. text-align: left;
  1154. }
  1155. .form-header input {
  1156. width: 100%;
  1157. display: block;
  1158. }
  1159. .form-header p {
  1160. margin-top: 2em;
  1161. }
  1162. }
  1163. @media (min-width: 1052px) and (max-width: 1153px) {
  1164. /* Adjusting textarea heights */
  1165. /* .added_item textarea { */
  1166. .added_item div {
  1167. height: 8em;
  1168. }
  1169. .new_item {}
  1170. }
  1171. /* ---------------- 5 COL ---------------- */
  1172. @media (min-width: 1154px) and (max-width: 1650px) {
  1173. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1174. /* Adjust the height of culumns to maintain the layout */
  1175. .field_01, .field_02, .field_09 {
  1176. min-height: 917px;
  1177. }
  1178. .field_03, .field_05 {
  1179. min-height: 428px;
  1180. }
  1181. .field_04, .field_06 {
  1182. min-height: 478px;
  1183. }
  1184. .field_07, .field_08 {
  1185. min-height: 390px;
  1186. }
  1187. }
  1188. @media (min-width: 1154px) and (max-width: 1702px) {
  1189. /* Adjusting textarea heights */
  1190. /* .added_item textarea { */
  1191. .added_item div {
  1192. height: 8.5em;
  1193. }
  1194. .new_item {}
  1195. }
  1196. /* ---------------------------------------------- */
  1197. @media (min-width: 1651px) {
  1198. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1199. /* Adjust the height of culumns to maintain the layout */
  1200. .field_01, .field_02, .field_09 {
  1201. min-height: 775px;
  1202. }
  1203. .field_03, .field_05 {
  1204. min-height: 375px;
  1205. }
  1206. .field_04, .field_06 {
  1207. min-height: 390px;
  1208. }
  1209. .field_07, .field_08 {
  1210. min-height: 340px;
  1211. }
  1212. }
  1213. /* ---------------- Header space bug fix ---------------- */
  1214. @media (min-width: 500px) and (max-width: 991px) {
  1215. .form-header {
  1216. padding-bottom: 30px;
  1217. }
  1218. }
  1219. @media (min-width: 1154px) and (max-width: 1240px) {
  1220. input.proj_title {
  1221. margin-right: -9px;
  1222. }
  1223. }