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 1.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.04em 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.75);
  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. padding-top: 3px;
  257. height: auto;
  258. overflow: scroll;
  259. /* cursor: move; */
  260. cursor: text;
  261. }
  262. ul.item_list .expandable {
  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.75);
  273. /* For auto expansion jQuery code */
  274. box-sizing: padding-box;
  275. overflow: hidden;
  276. }
  277. /* ----------------------------------------------
  278. Zoom animation
  279. ----------------------------------------------- */
  280. .zoom-in {
  281. -webkit-animation-name: zoom-in; /* Safari 4.0-8.0 */
  282. -webkit-animation-duration: 0.5s; /* Safari 4.0-8.0 */
  283. animation-name: zoom-in;
  284. animation-duration: 0.5s;
  285. /* transform: scale(1.05); */
  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.75);
  294. }
  295. to {
  296. -ms-transform: scale(1.03); /* IE 9 */
  297. -webkit-transform: scale(1.03); /* Safari */
  298. transform: scale(1.03);
  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.75);
  309. }
  310. to {
  311. -ms-transform: scale(1.03); /* IE 9 */
  312. -webkit-transform: scale(1.03); /* Safari */
  313. transform: scale(1.03);
  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.5s; /* Safari 4.0-8.0 */
  320. animation-name: zoom-out;
  321. animation-duration: 0.5s;
  322. /* transform: scale(1); */
  323. }
  324. /* Safari 4.0-8.0 */
  325. @-webkit-keyframes zoom-out {
  326. from {
  327. -ms-transform: scale(1.03); /* IE 9 */
  328. -webkit-transform: scale(1.03); /* Safari */
  329. transform: scale(1.03);
  330. background-color: rgba(255, 255, 255, 1);
  331. }
  332. to {
  333. -ms-transform: scale(1); /* IE 9 */
  334. -webkit-transform: scale(1); /* Safari */
  335. transform: scale(1);
  336. background-color: rgba(255, 255, 255, 0.75);
  337. }
  338. }
  339. /* Standard */
  340. @keyframes zoom-out {
  341. from {
  342. -ms-transform: scale(1.03); /* IE 9 */
  343. -webkit-transform: scale(1.03); /* Safari */
  344. transform: scale(1.03);
  345. background-color: rgba(255, 255, 255, 1);
  346. }
  347. to {
  348. -ms-transform: scale(1); /* IE 9 */
  349. -webkit-transform: scale(1); /* Safari */
  350. transform: scale(1);
  351. background-color: rgba(255, 255, 255, 0.75);
  352. }
  353. }
  354. /* ----------------------------------------------
  355. List item handles: Bootstrap Glyphicon
  356. ----------------------------------------------- */
  357. ul.item_list span.glyphicon {
  358. border-radius: 100%;
  359. margin-right: 10px;
  360. color: #ffffff;
  361. font-size: 1.2em;
  362. cursor: pointer;
  363. }
  364. span.glyphicon:hover {
  365. color: rgba(0, 0, 0, 0.5);
  366. }
  367. /* The handle icon for each item */
  368. span.handle {
  369. margin-left: 14px;
  370. /* cursor: move; */
  371. }
  372. /* Placeholder for sorting items */
  373. .sort-placeholder {
  374. border-radius: 0.35em;
  375. background-color: rgba(40, 40, 40, 0.35);
  376. width: 85%;
  377. height: 2.5em;
  378. padding: 0.5em 0.5em;
  379. margin-left: 1em;
  380. }
  381. /* ----------------------------------------------
  382. Tag selected term link
  383. ----------------------------------------------- */
  384. p.tag-selected-term {
  385. margin-top: 20px;
  386. display: none;
  387. }
  388. p.tag-selected-term a {
  389. color: #ffffff;
  390. font-size: 1.05em;
  391. margin-left: 1em;
  392. margin-top: 2em;
  393. padding: 1em 1em 1em 2em;
  394. background-image: url('../icons/tag.svg');
  395. background-size: 2.2em;
  396. background-position: left;
  397. background-repeat: no-repeat;
  398. }
  399. /* ----------------------------------------------
  400. USER INPUT:
  401. Add new items in each field
  402. ----------------------------------------------- */
  403. .user-input {
  404. width: 100%;
  405. margin-left: 1em;
  406. margin-top: 2em;
  407. padding-bottom: 1.5em;
  408. display: none;
  409. /* Shown (slide up and down) by jQuery when adding ideas */
  410. }
  411. /* The div containing all the user input things */
  412. .add_box {
  413. /* 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) */
  414. padding-bottom: 5.3em;
  415. }
  416. /* Add an idea link */
  417. a.add-idea {
  418. color: #ffffff;
  419. font-size: 1.05em;
  420. margin-left: 1em;
  421. margin-top: 2em;
  422. padding: 1em 1em 1em 2em;
  423. background-image: url('../icons/lightbulb.svg');
  424. background-size: 1.4em;
  425. background-position: left;
  426. background-repeat: no-repeat;
  427. }
  428. /* Textarea of a new item input */
  429. .new_item {
  430. width: 90%;
  431. border: 1px solid #ffffff;
  432. border-radius: 0.35em;
  433. outline: none;
  434. padding-left: 0.5em;
  435. /* for auto expantion jQuery code */
  436. box-sizing: border-box;
  437. overflow: hidden;
  438. }
  439. /* The add button */
  440. .add_btn {
  441. background-color: transparent;
  442. color: #ffffff;
  443. padding: 0.25em 1.2em;
  444. border: 0.12em solid #ffffff;
  445. border-radius: 0.5em;
  446. }
  447. .add_btn:hover {
  448. color: #37474f;
  449. border-color: #37474f;
  450. }
  451. li.added_item span {
  452. display: inline;
  453. margin-top: 5em;
  454. }
  455. .expandable {
  456. box-sizing: border-box;
  457. /* remove the user resizing for the text fields */
  458. resize: none;
  459. /* display: inline-block; */
  460. width: 75% !important;
  461. }
  462. .user-input span.chars {
  463. font-size: 1.1em;
  464. color: rgba(255, 255, 255, 0.7);
  465. }
  466. /* Tag */
  467. a.tag {
  468. background-color: rgba(55, 71, 79, 0.5);
  469. color: #ffffff;
  470. padding: 1px 2px;
  471. border: 1px solid rgba(0, 0, 0, 0.1);
  472. text-decoration: none;
  473. white-space: nowrap;
  474. }
  475. a.tag:hover {
  476. background-color: rgba(255, 255, 255, 0.5);
  477. color: rgba(55, 71, 79, 0.5);
  478. padding: 1px 2px;
  479. border: 1px solid rgba(0, 0, 0, 0.1);
  480. text-decoration: none;
  481. cursor: pointer;
  482. }
  483. /* Background shadow on all types of popups */
  484. div#shadow {
  485. display: none;
  486. width: 100%;
  487. height: 100%;
  488. position: fixed;
  489. top: 0;
  490. left: 0;
  491. z-index: 2;
  492. background-color: rgba(0, 0, 0, 0.5);
  493. }
  494. /* ----------------------------------------------
  495. Move window and tag windows
  496. ----------------------------------------------- */
  497. div.window {
  498. position: fixed;
  499. z-index: 3;
  500. top: 20%;
  501. border-radius: 10px;
  502. padding: 1em 1.5em 1em 1em;
  503. background-color: rgba(236, 239, 241, 0.95);
  504. display: none;
  505. }
  506. div.window button.close {
  507. outline: 0;
  508. position: relative;
  509. top: -8px;
  510. font-size: 2.5em;
  511. }
  512. div.window h2 {
  513. margin: 0 0 0.4em 0;
  514. font-size: 1.4em;
  515. line-height: 1.5;
  516. }
  517. div.window p {
  518. font-size: 0.95em;
  519. }
  520. /* ----------------------------------------------
  521. Move window
  522. ----------------------------------------------- */
  523. div#move-window {
  524. left: 35%;
  525. width: 30%;
  526. }
  527. div#move-window .move-window-button {
  528. background-color: transparent;
  529. color: rgb(51, 51, 51);
  530. padding: 0.25em 1.2em;
  531. border: 0.12em solid rgb(51, 51, 51);
  532. border-radius: 0.5em;
  533. }
  534. div#move-window .move-window-button:hover {
  535. color: #ffffff;
  536. border-color: #ffffff;
  537. }
  538. div#move-window h2 {
  539. }
  540. div#move-window ul {
  541. list-style-type: none;
  542. padding-left: 0;
  543. margin-bottom: 0;
  544. }
  545. /* ----------------------------------------------
  546. Tag window
  547. ----------------------------------------------- */
  548. div#tag-window {
  549. width: 75%;
  550. max-height: 80%;
  551. overflow: scroll;
  552. /* Center window horizontally and vertically */
  553. top: 50%;
  554. left: 50%;
  555. transform: translate(-50%, -50%);
  556. }
  557. /*
  558. div#tag-window h2#tag-description {
  559. }
  560. */
  561. div#tag-window textarea#tag-description {
  562. font-size: 0.95em;
  563. outline: none;
  564. width: 100%;
  565. border: 1px solid #ffffff;
  566. border-radius: 0.35em;
  567. margin: 0 0 0.75em 0;
  568. padding-left: 0.5em;
  569. resize: none;
  570. color: rgb(117, 117, 117);
  571. }
  572. div#tag-window span.chars {
  573. font-size: 1.1em;
  574. color: rgb(117, 117, 117);
  575. }
  576. div#tag-window .tag-window-button {
  577. background-color: transparent;
  578. color: rgb(51, 51, 51);
  579. padding: 0.25em 1.2em;
  580. border: 0.12em solid rgb(51, 51, 51);
  581. border-radius: 0.5em;
  582. }
  583. div#tag-window .tag-window-button:hover {
  584. color: #ffffff;
  585. border-color: #ffffff;
  586. }
  587. div#tag-window #delete-tag {
  588. display: none;
  589. }
  590. div#tag-window h2.similar-tags {
  591. margin: 0.95em 0 -0.2em 0;
  592. }
  593. div#tag-window p.similar-tags-tag {
  594. margin: 0.95em 0 0.4em 0;
  595. }
  596. div#tag-window p.similar-tags-description {
  597. margin: 0;
  598. }
  599. div#tag-window p.similar-tags-description-none {
  600. margin: 0.25em 0 0 0;
  601. display: none;
  602. }
  603. div#tag-window p.similar-tags-username {
  604. margin: 0;
  605. font-size: 0.75em;
  606. }
  607. /* ----------------------------------------------
  608. Field bottom area
  609. ----------------------------------------------- */
  610. div.card {
  611. position: relative;
  612. }
  613. .field-bottom {
  614. background-color: rgba(0, 0, 0, 0.25);
  615. border-radius: 0 0 10px 10px;
  616. height: 40px;
  617. bottom: 0;
  618. position: absolute;
  619. left: 0;
  620. width: 100%;
  621. }
  622. .field-bottom > img[src*=field] {
  623. width: 25px;
  624. height: 25px;
  625. margin-top: 7px;
  626. margin-left: 10px;
  627. }
  628. .field-bottom > img[src*=number] {
  629. float: right;
  630. width: 25px;
  631. height: 18px;
  632. margin-top: 11px;
  633. margin-right: 10px;
  634. }
  635. /* ----------------------------------------------
  636. FORM Import & Export buttons
  637. ----------------------------------------------- */
  638. .imp-exp-btn {
  639. margin-top: 2.5em;
  640. padding-left: 5px;
  641. padding-right: 5px;
  642. }
  643. button.json_exp, button.share_canvas, .pdf_exp {
  644. border: none;
  645. border-radius: 0.5em;
  646. padding: 1em 0;
  647. width: 60%;
  648. outline: none;
  649. }
  650. button.json_exp:hover, button.share_canvas:hover {
  651. opacity: 0.75;
  652. }
  653. .pdf_exp:hover {
  654. text-decoration: underline;
  655. }
  656. button.json_exp {
  657. background-color: #aed581;
  658. margin: 1em auto 0 auto;
  659. }
  660. button.share_canvas {
  661. background-color: #a67de0;
  662. margin: 0.5em auto 0.4em auto;
  663. }
  664. .pdf_exp {
  665. background-color: #85ade5;
  666. margin: 0.5em auto 0.4em auto;
  667. }
  668. /* The sign up or login to save link for unregistered users */
  669. a.login-to-save {
  670. display: block;
  671. padding: 1em;
  672. color: #444;
  673. border: none;
  674. border-radius: 0.5em;
  675. padding: 1em 0;
  676. width: 60%;
  677. outline: none;
  678. margin: 1em auto 0 auto;
  679. background-color: #aed581;
  680. }
  681. /* The save canvas PHP under the save/export buttons */
  682. .save-canvas-feedback p {
  683. text-align: center;
  684. color: #15af97;
  685. }
  686. .save-canvas-feedback span {
  687. color: #15af97;
  688. margin-right: 0.4em;
  689. }
  690. .save-canvas-feedback-fail p {
  691. text-align: center;
  692. color: #37474f;
  693. }
  694. .save-canvas-feedback-fail span {
  695. color: #37474f;
  696. margin-right: 0.4em;
  697. }
  698. /* Sharing the canvas */
  699. /* The share canvas button */
  700. .share_canvas{
  701. }
  702. .share_canvas_email{
  703. display: none;
  704. }
  705. .share_canvas_email input{
  706. width: 80%;
  707. padding: 1em;
  708. border-radius: 5px;
  709. border: 1px solid #444;
  710. }
  711. .share_canvas_email input:focus{
  712. outline: none;
  713. }
  714. /* The send btn */
  715. .share_canvas_send{
  716. border: none;
  717. border-radius: 0.5em;
  718. padding: 1em 0;
  719. width: 25%;
  720. outline: none;
  721. background-color: #546e7a;
  722. color: #ffffff;
  723. }
  724. /* ----------------------------------------------
  725. Footer
  726. ----------------------------------------------- */
  727. footer {
  728. font-size: 1em;
  729. margin-top: 2em;
  730. padding: 1.5em;
  731. background-color: #37474f;
  732. color: #ffffff;
  733. }
  734. footer .license a {
  735. color: #759BCF;
  736. }
  737. footer .license {
  738. margin: 0.5em auto 1.8em auto;
  739. }
  740. footer .contact p {
  741. color: #18AE90;
  742. }
  743. footer .contact h2 {
  744. color: #6bb5b4;
  745. }
  746. footer p.ethics-copy.terms, footer p.ethics-copy.privacy {
  747. text-decoration: none;
  748. padding: 0 0.5em;
  749. display: inline-block;
  750. }
  751. footer p.cc {
  752. margin-top: 2.8em;
  753. }
  754. footer p.terms, footer p.privacy {
  755. margin: 1.9em auto;
  756. }
  757. footer .privacy a {
  758. color: #a67de0;
  759. }
  760. footer .terms a {
  761. color: #aed581;
  762. }
  763. /* Footer license icons */
  764. footer .license-icons ul {
  765. list-style-type: none;
  766. margin-left: 0;
  767. padding-left: 0;
  768. }
  769. footer .license-icons li {
  770. display: inline-block;
  771. margin: 1.2em 0.2em;
  772. }
  773. footer .license-icons ul img {
  774. width: 3.5em;
  775. }
  776. /* ----------------------------------------------
  777. Dialog windows
  778. ----------------------------------------------- */
  779. div.dialog {
  780. display: none;
  781. width: 26%;
  782. position: fixed;
  783. top: 37%;
  784. left: 37%;
  785. font-family: 'Open Sans', sans-serif;
  786. z-index: 2;
  787. background-color: rgba(236, 239, 241, 0.95);
  788. border-radius: 5px;
  789. min-height: 150px;
  790. }
  791. div.dialog h2 {
  792. font-size: 1.4em;
  793. margin: 0;
  794. color: #444;
  795. }
  796. div.dialog p {
  797. font-size: 0.95em;
  798. color: rgb(51, 51, 51);
  799. }
  800. div.dialog button {
  801. position: relative;
  802. top: -8px;
  803. font-size: 2.5em;
  804. outline: 0;
  805. color: #444;
  806. float: right;
  807. }
  808. div.dialog-header {
  809. background-color: rgb(200, 200, 200);
  810. padding: 0.65em 0.75em 0.65em 0.75em;
  811. border-radius: 5px 5px 0 0;
  812. width: 100%;
  813. }
  814. div.dialog-content {
  815. padding: 0.75em 1.5em 0.75em 0.75em;
  816. }
  817. /* ----------------------------------------------
  818. Masonry Colors (ADAPT)
  819. ----------------------------------------------- */
  820. .bg--blue {
  821. background-color: #85ade5;
  822. }
  823. .bg--darkblue {
  824. background-color: #8b99e0;
  825. }
  826. .bg--green {
  827. background-color: #aed581;
  828. }
  829. .bg--seagreen {
  830. background-color: #6bb5b4;
  831. }
  832. .bg--purple {
  833. background-color: #a281d1;
  834. }
  835. .bg--green1 {
  836. background-color: #29bca4;
  837. }
  838. .bg--x {
  839. background-color: #ce93d8;
  840. }
  841. .bg--mineral {
  842. background-color: #607d8b;
  843. }
  844. /* ================================================
  845. MEDIA QUERIES
  846. ================================================= */
  847. /* ----------------- 1 COL ----------------- */
  848. @media (max-width: 499px) {
  849. .masonry-layout7-5 {
  850. column-count: 1;
  851. column-gap: 0;
  852. }
  853. .masonry-layout4 {
  854. column-count: 1;
  855. column-gap: 0;
  856. }
  857. .masonry-layout2 {
  858. column-count: 1;
  859. column-gap: 0;
  860. }
  861. /* Adjust the height of culumns to maintain the layout */
  862. .field_01, .field_04, .field_09, .field_06 {
  863. min-height: 250px;
  864. }
  865. .field_03, .field_05, .field_02 {
  866. min-height: 250px;
  867. }
  868. .field_07, .field_08 {
  869. min-height: 250px;
  870. }
  871. /* Adjusting textarea heights */
  872. .added_item .expandable {
  873. height: 8em;
  874. }
  875. /* Dialog */
  876. div.dialog {
  877. width: 60%;
  878. left: 20%;
  879. }
  880. /* Form Header */
  881. .form-header {
  882. width: 100%;
  883. margin: 0 auto 2.14em auto;
  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. }