canvas.css 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390
  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 .expandable {
  262. font-size: 0.95em;
  263. margin-left: 14px;
  264. margin-bottom: 5px;
  265. padding: 0.5em 0.5em 0.5em 1em;
  266. border-radius: 0.35em;;
  267. border: 1px solid rgba(255, 255, 255, 0.2);
  268. width: 85% !important;
  269. outline: none;
  270. display: inline-block;
  271. background-color: rgba(255, 255, 255, 0.6);
  272. /* For auto expansion jQuery code */
  273. box-sizing: padding-box;
  274. overflow: hidden;
  275. }
  276. /* ----------------------------------------------
  277. Zoom animation
  278. ----------------------------------------------- */
  279. .zoom-in {
  280. -webkit-animation-name: zoom-in; /* Safari 4.0-8.0 */
  281. -webkit-animation-duration: 0.25s; /* Safari 4.0-8.0 */
  282. animation-name: zoom-in;
  283. animation-duration: 0.25s;
  284. transform: scale(1.05);
  285. background-color: rgba(255, 255, 255, 1);
  286. }
  287. /* Safari 4.0-8.0 */
  288. @-webkit-keyframes zoom-in {
  289. from {
  290. -ms-transform: scale(1); /* IE 9 */
  291. -webkit-transform: scale(1); /* Safari */
  292. transform: scale(1);
  293. background-color: rgba(255, 255, 255, 0.6);
  294. }
  295. to {
  296. -ms-transform: scale(1.05); /* IE 9 */
  297. -webkit-transform: scale(1.05); /* Safari */
  298. transform: scale(1.05);
  299. background-color: rgba(255, 255, 255, 1);
  300. }
  301. }
  302. /* Standard */
  303. @keyframes zoom-in {
  304. from {
  305. -ms-transform: scale(1); /* IE 9 */
  306. -webkit-transform: scale(1); /* Safari */
  307. transform: scale(1);
  308. background-color: rgba(255, 255, 255, 0.6);
  309. }
  310. to {
  311. -ms-transform: scale(1.05); /* IE 9 */
  312. -webkit-transform: scale(1.05); /* Safari */
  313. transform: scale(1.05);
  314. background-color: rgba(255, 255, 255, 1);
  315. }
  316. }
  317. .zoom-out {
  318. -webkit-animation-name: zoom-out; /* Safari 4.0-8.0 */
  319. -webkit-animation-duration: 0.25s; /* Safari 4.0-8.0 */
  320. animation-name: zoom-out;
  321. animation-duration: 0.25s;
  322. transform: scale(1);
  323. background-color: rgba(255, 255, 255, 0.6);
  324. }
  325. /* Safari 4.0-8.0 */
  326. @-webkit-keyframes zoom-out {
  327. from {
  328. -ms-transform: scale(1); /* IE 9 */
  329. -webkit-transform: scale(1); /* Safari */
  330. transform: scale(1);
  331. background-color: rgba(255, 255, 255, 0.6);
  332. }
  333. to {
  334. -ms-transform: scale(1.05); /* IE 9 */
  335. -webkit-transform: scale(1.05); /* Safari */
  336. transform: scale(1.05);
  337. background-color: rgba(255, 255, 255, 1);
  338. }
  339. }
  340. /* Standard */
  341. @keyframes zoom-out {
  342. from {
  343. -ms-transform: scale(1); /* IE 9 */
  344. -webkit-transform: scale(1); /* Safari */
  345. transform: scale(1);
  346. background-color: rgba(255, 255, 255, 0.6);
  347. }
  348. to {
  349. -ms-transform: scale(1.05); /* IE 9 */
  350. -webkit-transform: scale(1.05); /* Safari */
  351. transform: scale(1.05);
  352. background-color: rgba(255, 255, 255, 1);
  353. }
  354. }
  355. /* ----------------------------------------------
  356. List item handles: Bootstrap Glyphicon
  357. ----------------------------------------------- */
  358. ul.item_list span.glyphicon {
  359. border-radius: 100%;
  360. margin-right: 10px;
  361. color: #ffffff;
  362. font-size: 1.2em;
  363. cursor: pointer;
  364. }
  365. span.glyphicon:hover {
  366. color: rgba(0, 0, 0, 0.5);
  367. }
  368. /* The handle icon for each item */
  369. span.handle {
  370. margin-left: 14px;
  371. /* cursor: move; */
  372. }
  373. /* Placeholder for sorting items */
  374. .sort-placeholder {
  375. border-radius: 0.35em;
  376. background-color: rgba(40, 40, 40, 0.35);
  377. width: 85%;
  378. height: 2.5em;
  379. padding: 0.5em 0.5em;
  380. margin-left: 1em;
  381. }
  382. /* ----------------------------------------------
  383. Tag selected term link
  384. ----------------------------------------------- */
  385. p.tag-selected-term {
  386. margin-top: 20px;
  387. display: none;
  388. }
  389. p.tag-selected-term a {
  390. color: #ffffff;
  391. font-size: 1.05em;
  392. margin-left: 1em;
  393. margin-top: 2em;
  394. padding: 1em 1em 1em 2em;
  395. background-image: url('../icons/tag.svg');
  396. background-size: 2.2em;
  397. background-position: left;
  398. background-repeat: no-repeat;
  399. }
  400. /* ----------------------------------------------
  401. USER INPUT:
  402. Add new items in each field
  403. ----------------------------------------------- */
  404. .user-input {
  405. width: 100%;
  406. margin-left: 1em;
  407. margin-top: 2em;
  408. padding-bottom: 1.5em;
  409. display: none;
  410. /* Shown (slide up and down) by jQuery when adding ideas */
  411. }
  412. /* The div containing all the user input things */
  413. .add_box {
  414. /* 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) */
  415. padding-bottom: 5.3em;
  416. }
  417. /* Add an idea link */
  418. a.add-idea {
  419. color: #ffffff;
  420. font-size: 1.05em;
  421. margin-left: 1em;
  422. margin-top: 2em;
  423. padding: 1em 1em 1em 2em;
  424. background-image: url('../icons/lightbulb.svg');
  425. background-size: 1.4em;
  426. background-position: left;
  427. background-repeat: no-repeat;
  428. }
  429. /* Textarea of a new item input */
  430. .new_item {
  431. width: 90%;
  432. border: 1px solid #ffffff;
  433. border-radius: 0.35em;
  434. outline: none;
  435. padding-left: 0.5em;
  436. /* for auto expantion jQuery code */
  437. box-sizing: border-box;
  438. overflow: hidden;
  439. }
  440. /* The add button */
  441. .add_btn {
  442. background-color: transparent;
  443. color: #ffffff;
  444. padding: 0.25em 1.2em;
  445. border: 0.12em solid #ffffff;
  446. border-radius: 0.5em;
  447. }
  448. .add_btn:hover {
  449. color: #37474f;
  450. border-color: #37474f;
  451. }
  452. li.added_item span {
  453. display: inline;
  454. margin-top: 5em;
  455. }
  456. .expandable {
  457. box-sizing: border-box;
  458. /* remove the user resizing for the text fields */
  459. resize: none;
  460. /* display: inline-block; */
  461. width: 75% !important;
  462. }
  463. .user-input span.chars {
  464. font-size: 1.1em;
  465. color: rgba(255, 255, 255, 0.7);
  466. }
  467. /* Tag */
  468. a.tag {
  469. background-color: rgba(55, 71, 79, 0.5);
  470. color: #ffffff;
  471. padding: 1px 2px;
  472. border: 1px solid rgba(0, 0, 0, 0.1);
  473. text-decoration: none;
  474. white-space: nowrap;
  475. }
  476. a.tag:hover {
  477. background-color: rgba(255, 255, 255, 0.5);
  478. color: rgba(55, 71, 79, 0.5);
  479. padding: 1px 2px;
  480. border: 1px solid rgba(0, 0, 0, 0.1);
  481. text-decoration: none;
  482. cursor: pointer;
  483. }
  484. /* Background shadow on all types of popups */
  485. div#shadow {
  486. display: none;
  487. width: 100%;
  488. height: 100%;
  489. position: fixed;
  490. top: 0;
  491. left: 0;
  492. z-index: 2;
  493. background-color: rgba(0, 0, 0, 0.5);
  494. }
  495. /* ----------------------------------------------
  496. Move window and tag windows
  497. ----------------------------------------------- */
  498. div.window {
  499. position: fixed;
  500. z-index: 3;
  501. top: 20%;
  502. border-radius: 10px;
  503. padding: 1em 1.5em 1em 1em;
  504. background-color: rgba(236, 239, 241, 0.95);
  505. display: none;
  506. }
  507. div.window button.close {
  508. outline: 0;
  509. position: relative;
  510. top: -8px;
  511. font-size: 2.5em;
  512. }
  513. div.window h2 {
  514. margin: 0 0 0.4em 0;
  515. font-size: 1.4em;
  516. line-height: 1.5;
  517. }
  518. div.window p {
  519. font-size: 0.95em;
  520. }
  521. /* ----------------------------------------------
  522. Move window
  523. ----------------------------------------------- */
  524. div#move-window {
  525. left: 35%;
  526. width: 30%;
  527. }
  528. div#move-window .move-window-button {
  529. background-color: transparent;
  530. color: rgb(51, 51, 51);
  531. padding: 0.25em 1.2em;
  532. border: 0.12em solid rgb(51, 51, 51);
  533. border-radius: 0.5em;
  534. }
  535. div#move-window .move-window-button:hover {
  536. color: #ffffff;
  537. border-color: #ffffff;
  538. }
  539. div#move-window h2 {
  540. }
  541. div#move-window ul {
  542. list-style-type: none;
  543. padding-left: 0;
  544. margin-bottom: 0;
  545. }
  546. /* ----------------------------------------------
  547. Tag window
  548. ----------------------------------------------- */
  549. div#tag-window {
  550. width: 75%;
  551. max-height: 80%;
  552. overflow: scroll;
  553. /* Center window horizontally and vertically */
  554. top: 50%;
  555. left: 50%;
  556. transform: translate(-50%, -50%);
  557. }
  558. /*
  559. div#tag-window h2#tag-description {
  560. }
  561. */
  562. div#tag-window textarea#tag-description {
  563. font-size: 0.95em;
  564. outline: none;
  565. width: 100%;
  566. border: 1px solid #ffffff;
  567. border-radius: 0.35em;
  568. margin: 0 0 0.75em 0;
  569. padding-left: 0.5em;
  570. resize: none;
  571. color: rgb(117, 117, 117);
  572. }
  573. div#tag-window span.chars {
  574. font-size: 1.1em;
  575. color: rgb(117, 117, 117);
  576. }
  577. div#tag-window .tag-window-button {
  578. background-color: transparent;
  579. color: rgb(51, 51, 51);
  580. padding: 0.25em 1.2em;
  581. border: 0.12em solid rgb(51, 51, 51);
  582. border-radius: 0.5em;
  583. }
  584. div#tag-window .tag-window-button:hover {
  585. color: #ffffff;
  586. border-color: #ffffff;
  587. }
  588. div#tag-window #delete-tag {
  589. display: none;
  590. }
  591. div#tag-window h2.similar-tags {
  592. margin: 0.95em 0 -0.2em 0;
  593. }
  594. div#tag-window p.similar-tags-tag {
  595. margin: 0.95em 0 0.4em 0;
  596. }
  597. div#tag-window p.similar-tags-description {
  598. margin: 0;
  599. }
  600. div#tag-window p.similar-tags-description-none {
  601. margin: 0.25em 0 0 0;
  602. display: none;
  603. }
  604. div#tag-window p.similar-tags-username {
  605. margin: 0;
  606. font-size: 0.75em;
  607. }
  608. /* ----------------------------------------------
  609. Field bottom area
  610. ----------------------------------------------- */
  611. div.card {
  612. position: relative;
  613. }
  614. .field-bottom {
  615. background-color: rgba(0, 0, 0, 0.25);
  616. border-radius: 0 0 10px 10px;
  617. height: 40px;
  618. bottom: 0;
  619. position: absolute;
  620. left: 0;
  621. width: 100%;
  622. }
  623. .field-bottom > img[src*=field] {
  624. width: 25px;
  625. height: 25px;
  626. margin-top: 7px;
  627. margin-left: 10px;
  628. }
  629. .field-bottom > img[src*=number] {
  630. float: right;
  631. width: 25px;
  632. height: 18px;
  633. margin-top: 11px;
  634. margin-right: 10px;
  635. }
  636. /* ----------------------------------------------
  637. FORM Import & Export buttons
  638. ----------------------------------------------- */
  639. .imp-exp-btn {
  640. margin-top: 2.5em;
  641. padding-left: 5px;
  642. padding-right: 5px;
  643. }
  644. button.json_exp, button.share_canvas, .pdf_exp {
  645. border: none;
  646. border-radius: 0.5em;
  647. padding: 1em 0;
  648. width: 60%;
  649. outline: none;
  650. }
  651. button.json_exp:hover, button.share_canvas:hover {
  652. opacity: 0.6;
  653. }
  654. .pdf_exp:hover {
  655. text-decoration: underline;
  656. }
  657. button.json_exp {
  658. background-color: #aed581;
  659. margin: 1em auto 0 auto;
  660. }
  661. button.share_canvas {
  662. background-color: #a67de0;
  663. margin: 0.5em auto 0.4em auto;
  664. }
  665. .pdf_exp {
  666. background-color: #85ade5;
  667. margin: 0.5em auto 0.4em auto;
  668. }
  669. /* The sign up or login to save link for unregistered users */
  670. a.login-to-save {
  671. display: block;
  672. padding: 1em;
  673. color: #444;
  674. border: none;
  675. border-radius: 0.5em;
  676. padding: 1em 0;
  677. width: 60%;
  678. outline: none;
  679. margin: 1em auto 0 auto;
  680. background-color: #aed581;
  681. }
  682. /* The save canvas PHP under the save/export buttons */
  683. .save-canvas-feedback p {
  684. text-align: center;
  685. color: #15af97;
  686. }
  687. .save-canvas-feedback span {
  688. color: #15af97;
  689. margin-right: 0.4em;
  690. }
  691. .save-canvas-feedback-fail p {
  692. text-align: center;
  693. color: #37474f;
  694. }
  695. .save-canvas-feedback-fail span {
  696. color: #37474f;
  697. margin-right: 0.4em;
  698. }
  699. /* Sharing the canvas */
  700. /* The share canvas button */
  701. .share_canvas{
  702. }
  703. .share_canvas_email{
  704. display: none;
  705. }
  706. .share_canvas_email input{
  707. width: 80%;
  708. padding: 1em;
  709. border-radius: 5px;
  710. border: 1px solid #444;
  711. }
  712. .share_canvas_email input:focus{
  713. outline: none;
  714. }
  715. /* The send btn */
  716. .share_canvas_send{
  717. border: none;
  718. border-radius: 0.5em;
  719. padding: 1em 0;
  720. width: 25%;
  721. outline: none;
  722. background-color: #546e7a;
  723. color: #ffffff;
  724. }
  725. /* ----------------------------------------------
  726. Footer
  727. ----------------------------------------------- */
  728. footer {
  729. font-size: 1em;
  730. margin-top: 2em;
  731. padding: 1.5em;
  732. background-color: #37474f;
  733. color: #ffffff;
  734. }
  735. footer .license a {
  736. color: #759BCF;
  737. }
  738. footer .license {
  739. margin: 0.5em auto 1.8em auto;
  740. }
  741. footer .contact p {
  742. color: #18AE90;
  743. }
  744. footer .contact h2 {
  745. color: #6bb5b4;
  746. }
  747. footer p.ethics-copy.terms, footer p.ethics-copy.privacy {
  748. text-decoration: none;
  749. padding: 0 0.5em;
  750. display: inline-block;
  751. }
  752. footer p.cc {
  753. margin-top: 2.8em;
  754. }
  755. footer p.terms, footer p.privacy {
  756. margin: 1.9em auto;
  757. }
  758. footer .privacy a {
  759. color: #a67de0;
  760. }
  761. footer .terms a {
  762. color: #aed581;
  763. }
  764. /* Footer license icons */
  765. footer .license-icons ul {
  766. list-style-type: none;
  767. margin-left: 0;
  768. padding-left: 0;
  769. }
  770. footer .license-icons li {
  771. display: inline-block;
  772. margin: 1.2em 0.2em;
  773. }
  774. footer .license-icons ul img {
  775. width: 3.5em;
  776. }
  777. /* ----------------------------------------------
  778. Dialog windows
  779. ----------------------------------------------- */
  780. div.dialog {
  781. display: none;
  782. width: 26%;
  783. position: fixed;
  784. top: 37%;
  785. left: 37%;
  786. font-family: 'Open Sans', sans-serif;
  787. z-index: 2;
  788. background-color: rgba(236, 239, 241, 0.95);
  789. border-radius: 5px;
  790. min-height: 150px;
  791. }
  792. div.dialog h2 {
  793. font-size: 1.4em;
  794. margin: 0;
  795. color: #444;
  796. }
  797. div.dialog p {
  798. font-size: 0.95em;
  799. color: rgb(51, 51, 51);
  800. }
  801. div.dialog button {
  802. position: relative;
  803. top: -8px;
  804. font-size: 2.5em;
  805. outline: 0;
  806. color: #444;
  807. float: right;
  808. }
  809. div.dialog-header {
  810. background-color: rgb(200, 200, 200);
  811. padding: 0.65em 0.75em 0.65em 0.75em;
  812. border-radius: 5px 5px 0 0;
  813. width: 100%;
  814. }
  815. div.dialog-content {
  816. padding: 0.75em 1.5em 0.75em 0.75em;
  817. }
  818. /* ----------------------------------------------
  819. Masonry Colors (ADAPT)
  820. ----------------------------------------------- */
  821. .bg--blue {
  822. background-color: #85ade5;
  823. }
  824. .bg--darkblue {
  825. background-color: #8b99e0;
  826. }
  827. .bg--green {
  828. background-color: #aed581;
  829. }
  830. .bg--seagreen {
  831. background-color: #6bb5b4;
  832. }
  833. .bg--purple {
  834. background-color: #a281d1;
  835. }
  836. .bg--green1 {
  837. background-color: #29bca4;
  838. }
  839. .bg--x {
  840. background-color: #ce93d8;
  841. }
  842. .bg--mineral {
  843. background-color: #607d8b;
  844. }
  845. /* ================================================
  846. MEDIA QUERIES
  847. ================================================= */
  848. /* ----------------- 1 COL ----------------- */
  849. @media (max-width: 499px) {
  850. .masonry-layout7-5 {
  851. column-count: 1;
  852. column-gap: 0;
  853. }
  854. .masonry-layout4 {
  855. column-count: 1;
  856. column-gap: 0;
  857. }
  858. .masonry-layout2 {
  859. column-count: 1;
  860. column-gap: 0;
  861. }
  862. /* Adjust the height of culumns to maintain the layout */
  863. .field_01, .field_04, .field_09, .field_06 {
  864. min-height: 250px;
  865. }
  866. .field_03, .field_05, .field_02 {
  867. min-height: 250px;
  868. }
  869. .field_07, .field_08 {
  870. min-height: 250px;
  871. }
  872. /* Adjusting textarea heights */
  873. .added_item .expandable {
  874. height: 8em;
  875. }
  876. /* Dialog */
  877. div.dialog {
  878. width: 60%;
  879. left: 20%;
  880. }
  881. /* Form Header */
  882. .form-header {
  883. width: 100%;
  884. padding-bottom: 2em;
  885. }
  886. .form-header h1 {
  887. margin-bottom: 1em;
  888. }
  889. .form-header label {
  890. margin-top: 0.6em;
  891. display: block;
  892. text-align: left;
  893. }
  894. .form-header input {
  895. width: 95%;
  896. display: block;
  897. }
  898. .form-header p {
  899. margin-top: 1.85em;
  900. }
  901. /* Jump to */
  902. .jump-to-click-area {
  903. position: fixed;
  904. top: 0;
  905. margin-left: -15px;
  906. height: 48px;
  907. width: 100%;
  908. z-index: 2;
  909. cursor: pointer;
  910. display: none;
  911. }
  912. .jump-to-click-area-toggle {
  913. display: block;
  914. }
  915. .jump-to {
  916. width: 100%;
  917. overflow: hidden;
  918. min-height: 64px;
  919. border-radius: 5px;
  920. display: block;
  921. }
  922. .jump-to-toggle {
  923. /* display: none; */
  924. position: fixed;
  925. top: 0;
  926. z-index: 1;
  927. margin-left: -15px;
  928. border-radius: 0;
  929. padding-top: 2em;
  930. }
  931. /*
  932. .jump-to-list {
  933. }
  934. */
  935. .jump-to-list-toggle {
  936. display: none;
  937. }
  938. .jump-to hr {
  939. color: rgb(222, 222, 222);
  940. margin-top: 0.2em;
  941. margin-bottom: 0.2em;
  942. margin-left: auto;
  943. margin-right: auto;
  944. border-style: solid;
  945. border-width: 1px;
  946. }
  947. .jump-to ul {
  948. margin-top: 5px;
  949. width: 110%;
  950. margin-left: -15px;
  951. margin-bottom: -5px;
  952. padding-top: 5px;
  953. padding-left: 15px;
  954. padding-bottom: 10px;
  955. }
  956. .jump-to-img {
  957. margin-right: 5px;
  958. height: 18px;
  959. width: 18px;
  960. display: none;
  961. }
  962. .jump-to-img-toggle {
  963. display: inline;
  964. }
  965. /*
  966. .jump-to .jump-to-arrow {
  967. display: inline-block;
  968. }
  969. */
  970. /*
  971. .jump-to label {
  972. cursor: pointer;
  973. }
  974. */
  975. .jump-to-arrow-90 {
  976. transform: rotate(90deg);
  977. transition: .3s;
  978. }
  979. .jump-to-arrow-0 {
  980. transform: rotate(0deg);
  981. transition: .3s;
  982. }
  983. /* Saved tags */
  984. .saved-tags {
  985. padding: 1em 1em 0.3em 1em;
  986. }
  987. .saved-tags label {
  988. margin-right: 0.3em;
  989. }
  990. .saved-tags p {
  991. display: block;
  992. }
  993. /* Move window */
  994. div#move-window {
  995. left: 15%;
  996. width: 70%;
  997. }
  998. /* Tag window */
  999. div#tag-window textarea#tag-description {
  1000. width: 100%;
  1001. }
  1002. /* User area button and dropdown menu in the header: only shown when logged in */
  1003. .form-header .user-profile {
  1004. margin-left: 0;
  1005. width: 95%;
  1006. }
  1007. /* The button When the drop down menu is open */
  1008. .dropdown button#dropdownMenu1 {
  1009. width: 100%;
  1010. margin: auto;
  1011. }
  1012. /* Bootstrap dropdown classes */
  1013. ul.dropdown-menu {
  1014. margin-left: 0;
  1015. width: 100%;
  1016. margin: auto;
  1017. }
  1018. }
  1019. /* ----------------- 2 COL ----------------- */
  1020. @media (min-width: 500px) and (max-width: 934px) {
  1021. .masonry-layout7-5 {
  1022. column-count: 2;
  1023. column-gap: 0;
  1024. }
  1025. .masonry-layout4 {
  1026. column-count: 2;
  1027. column-gap: 0;
  1028. }
  1029. /* Adjust the height of culumns to maintain the layout */
  1030. .field_01, .field_04, .field_09, .field_06 {
  1031. min-height: 460px;
  1032. }
  1033. .field_02 {
  1034. min-height: 930px;
  1035. }
  1036. .field_03, .field_05 {
  1037. min-height: 460px;
  1038. }
  1039. .field_07, .field_08 {
  1040. min-height: 460px;
  1041. }
  1042. /* Adjusting textarea heights */
  1043. .added_item .expandable {
  1044. height: 8em;
  1045. }
  1046. /* Dialog */
  1047. div.dialog {
  1048. width: 46%;
  1049. left: 27%;
  1050. }
  1051. /* Form Header */
  1052. .form-header {
  1053. width: 100%;
  1054. }
  1055. .form-header h1 {
  1056. text-align: center;
  1057. }
  1058. .form-header label {
  1059. margin-top: 1.8em;
  1060. display: block;
  1061. text-align: center;
  1062. }
  1063. .form-header input {
  1064. width: 50%;
  1065. display: block;
  1066. margin: auto;
  1067. }
  1068. .form-header p {
  1069. margin-top: 1.85em;
  1070. }
  1071. a.logo img {
  1072. display: block;
  1073. width: 40%;
  1074. margin: auto;
  1075. }
  1076. /* Saved tags */
  1077. .saved-tags {
  1078. padding: 1em 1em 0.3em 1em;
  1079. }
  1080. .saved-tags label {
  1081. margin-right: 0.3em;
  1082. }
  1083. .saved-tags p {
  1084. display: block;
  1085. }
  1086. /* Move window */
  1087. div#move-window {
  1088. left: 25%;
  1089. width: 50%;
  1090. }
  1091. /* Tag window */
  1092. div#tag-window textarea#tag-description {
  1093. width: 100%;
  1094. }
  1095. /* User area button and dropdown menu in the header: only shown when logged in */
  1096. .form-header .user-profile {
  1097. margin-left: 0;
  1098. width: 50%;
  1099. margin: 2em auto;
  1100. }
  1101. /* The button When the drop down menu is open */
  1102. .dropdown button#dropdownMenu1 {
  1103. width: 60%;
  1104. margin: 0 20%;
  1105. }
  1106. /* Bootstrap dropdown classes */
  1107. ul.dropdown-menu {
  1108. margin-left: 0;
  1109. width: 60%;
  1110. margin: 0 20%;
  1111. }
  1112. }
  1113. /* ----------------- 4 COL Smaller ----------------- */
  1114. @media (min-width: 935px) and (max-width: 991px) {
  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. /* Adjust the height of culumns to maintain the layout */
  1124. .field_01, .field_04, .field_09, .field_06 {
  1125. min-height: 500px;
  1126. }
  1127. .field_02 {
  1128. min-height: 1010px;
  1129. }
  1130. .field_03, .field_05 {
  1131. min-height: 500px;
  1132. }
  1133. .field_07, .field_08 {
  1134. min-height: 500px;
  1135. }
  1136. /* Dialog */
  1137. div.dialog {
  1138. width: 30%;
  1139. left: 37%;
  1140. }
  1141. /* Form Header */
  1142. .form-header {
  1143. width: 100%;
  1144. }
  1145. .form-header h1 {
  1146. text-align: center;
  1147. }
  1148. .form-header label {
  1149. margin-top: 1.8em;
  1150. display: block;
  1151. text-align: center;
  1152. }
  1153. .form-header input {
  1154. width: 50%;
  1155. display: block;
  1156. margin: auto;
  1157. }
  1158. .form-header p {
  1159. margin-top: 1.85em;
  1160. }
  1161. /* User area button and dropdown menu in the header: only shown when logged in */
  1162. .form-header .user-profile {
  1163. margin-left: 0;
  1164. width: 60%;
  1165. margin: 2em auto;
  1166. transition: all 0.4s;
  1167. }
  1168. /* The button When the drop down menu is open */
  1169. .dropdown button#dropdownMenu1 {
  1170. width: 62%;
  1171. margin: 0 18%;
  1172. }
  1173. /* Bootstrap dropdown classes */
  1174. ul.dropdown-menu {
  1175. margin-left: 0;
  1176. width: 62%;
  1177. margin: 0 18%;
  1178. }
  1179. }
  1180. @media (min-width: 935px) and (max-width: 1153px) {
  1181. /* Adjusting textarea heights */
  1182. .added_item .expandable {
  1183. height: 8em;
  1184. }
  1185. }
  1186. /* ---------------- 4 COL Large ---------------- */
  1187. @media (min-width: 992px) and (max-width: 1153px) {
  1188. .masonry-layout7-5 {
  1189. column-count: 4;
  1190. column-gap: 0;
  1191. }
  1192. .masonry-layout4 {
  1193. column-count: 4;
  1194. column-gap: 0;
  1195. }
  1196. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1197. /* Adjust the height of culumns to maintain the layout */
  1198. .field_01, .field_04, .field_09, .field_06 {
  1199. min-height: 480px;
  1200. }
  1201. .field_02 {
  1202. min-height: 970px;
  1203. }
  1204. .field_03, .field_05 {
  1205. min-height: 480px;
  1206. }
  1207. .field_07, .field_08 {
  1208. min-height: 480px;
  1209. }
  1210. /* Dialog */
  1211. div.dialog {
  1212. width: 30%;
  1213. left: 37%;
  1214. }
  1215. /* Form Header */
  1216. .form-header {
  1217. width: 100%;
  1218. min-height: 8em;
  1219. }
  1220. .form-header h1 {
  1221. font-size: 1.7em;
  1222. }
  1223. .form-header label {
  1224. margin-top: 1.8em;
  1225. display: block;
  1226. text-align: left;
  1227. }
  1228. .form-header input {
  1229. width: 100%;
  1230. display: block;
  1231. }
  1232. .form-header p {
  1233. margin-top: 2em;
  1234. }
  1235. }
  1236. @media (min-width: 1052px) and (max-width: 1153px) {
  1237. /* Adjusting textarea heights */
  1238. .added_item .expandable {
  1239. height: 8em;
  1240. }
  1241. .new_item {}
  1242. }
  1243. /* ---------------- 5 COL ---------------- */
  1244. @media (min-width: 1154px) and (max-width: 1650px) {
  1245. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1246. /* Adjust the height of culumns to maintain the layout */
  1247. .field_01, .field_02, .field_09 {
  1248. min-height: 917px;
  1249. }
  1250. .field_03, .field_05 {
  1251. min-height: 428px;
  1252. }
  1253. .field_04, .field_06 {
  1254. min-height: 478px;
  1255. }
  1256. .field_07, .field_08 {
  1257. min-height: 390px;
  1258. }
  1259. }
  1260. @media (min-width: 1154px) and (max-width: 1702px) {
  1261. /* Adjusting textarea heights */
  1262. .added_item .expandable {
  1263. height: 8.5em;
  1264. }
  1265. .new_item {}
  1266. }
  1267. /* ---------------------------------------------- */
  1268. @media (min-width: 1651px) {
  1269. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1270. /* Adjust the height of culumns to maintain the layout */
  1271. .field_01, .field_02, .field_09 {
  1272. min-height: 775px;
  1273. }
  1274. .field_03, .field_05 {
  1275. min-height: 375px;
  1276. }
  1277. .field_04, .field_06 {
  1278. min-height: 390px;
  1279. }
  1280. .field_07, .field_08 {
  1281. min-height: 340px;
  1282. }
  1283. }
  1284. /* ---------------- Header space bug fix ---------------- */
  1285. @media (min-width: 500px) and (max-width: 991px) {
  1286. .form-header {
  1287. padding-bottom: 30px;
  1288. }
  1289. }
  1290. @media (min-width: 1154px) and (max-width: 1240px) {
  1291. input.proj_title {
  1292. margin-right: -9px;
  1293. }
  1294. }