canvas.css 30 KB

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