canvas.css 27 KB

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