canvas.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230
  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. background-color: rgba(0, 0, 0, 0.5);
  417. }
  418. /* ----------------------------------------------
  419. Move and tag window
  420. ----------------------------------------------- */
  421. div.window {
  422. position: fixed;
  423. z-index: 1;
  424. top: 20%;
  425. border-radius: 10px;
  426. padding: 1em 1.5em 1em 1em;
  427. background-color: rgba(236, 239, 241, 0.95);
  428. display: none;
  429. }
  430. div.window button.close {
  431. outline: 0;
  432. position: relative;
  433. top: -8px;
  434. font-size: 2.5em;
  435. }
  436. div.window h2 {
  437. margin: 0 0 0.4em 0;
  438. font-size: 1.4em;
  439. line-height: 1.5;
  440. }
  441. div.window p {
  442. font-size: 0.95em;
  443. }
  444. /* ----------------------------------------------
  445. Move window
  446. ----------------------------------------------- */
  447. div#move-window {
  448. left: 37.5%;
  449. width: 25%;
  450. }
  451. div#move-window .move-window-button {
  452. background-color: transparent;
  453. color: rgb(51, 51, 51);
  454. padding: 0.25em 1.2em;
  455. border: 0.12em solid rgb(51, 51, 51);
  456. border-radius: 0.5em;
  457. }
  458. div#move-window .move-window-button:hover {
  459. color: #ffffff;
  460. border-color: #ffffff;
  461. }
  462. div#move-window h2 {
  463. }
  464. div#move-window ul {
  465. list-style-type: none;
  466. padding-left: 0;
  467. }
  468. /* ----------------------------------------------
  469. Tag window
  470. ----------------------------------------------- */
  471. div#tag-window {
  472. left: 12.5%;
  473. width: 75%;
  474. }
  475. /*
  476. div#tag-window h2#tag-description {
  477. }
  478. */
  479. div#tag-window textarea#tag-description {
  480. font-size: 0.95em;
  481. outline: none;
  482. width: 100%;
  483. border: 1px solid #ffffff;
  484. border-radius: 0.35em;
  485. margin: 0 0 0.75em 0;
  486. padding-left: 0.5em;
  487. resize: none;
  488. color: rgb(117, 117, 117);
  489. }
  490. div#tag-window span.chars {
  491. font-size: 1.1em;
  492. color: rgb(117, 117, 117);
  493. }
  494. div#tag-window .tag-window-button {
  495. background-color: transparent;
  496. color: rgb(51, 51, 51);
  497. padding: 0.25em 1.2em;
  498. border: 0.12em solid rgb(51, 51, 51);
  499. border-radius: 0.5em;
  500. }
  501. div#tag-window .tag-window-button:hover {
  502. color: #ffffff;
  503. border-color: #ffffff;
  504. }
  505. div#tag-window #delete-tag {
  506. display: none;
  507. }
  508. div#tag-window h2.similar-tags {
  509. margin: 0.95em 0 -0.2em 0;
  510. }
  511. div#tag-window p.similar-tags-tag {
  512. margin: 0.95em 0 0.4em 0;
  513. }
  514. div#tag-window p.similar-tags-description {
  515. margin: 0;
  516. }
  517. div#tag-window p.similar-tags-description-none {
  518. margin: 0.25em 0 0 0;
  519. display: none;
  520. }
  521. div#tag-window p.similar-tags-username {
  522. margin: 0;
  523. font-size: 0.75em;
  524. }
  525. /* ----------------------------------------------
  526. Field bottom area
  527. ----------------------------------------------- */
  528. div.card {
  529. position: relative;
  530. }
  531. .field-bottom {
  532. background-color: rgba(0, 0, 0, 0.25);
  533. border-radius: 0 0 10px 10px;
  534. height: 40px;
  535. bottom: 0;
  536. position: absolute;
  537. left: 0;
  538. width: 100%;
  539. }
  540. .field-bottom > img[src*=field] {
  541. width: 25px;
  542. height: 25px;
  543. margin-top: 7px;
  544. margin-left: 10px;
  545. }
  546. .field-bottom > img[src*=number] {
  547. float: right;
  548. width: 25px;
  549. height: 18px;
  550. margin-top: 11px;
  551. margin-right: 10px;
  552. }
  553. /* ----------------------------------------------
  554. FORM Import & Export buttons
  555. ----------------------------------------------- */
  556. .imp-exp-btn {
  557. margin-top: 2.5em;
  558. }
  559. button.json_exp, button.share_canvas, .pdf_exp {
  560. border: none;
  561. border-radius: 0.5em;
  562. padding: 1em 0;
  563. width: 60%;
  564. outline: none;
  565. }
  566. button.json_exp:hover, button.share_canvas:hover, .pdf_exp:hover {
  567. opacity: 0.6;
  568. }
  569. button.json_exp {
  570. background-color: #aed581;
  571. margin: 1em auto 0 auto;
  572. }
  573. button.share_canvas {
  574. background-color: #a67de0;
  575. margin: 0.5em auto 0.4em auto;
  576. }
  577. .pdf_exp {
  578. background-color: #85ade5;
  579. margin: 0.5em auto 0.4em auto;
  580. }
  581. /* The sign up or login to save link for unregistered users */
  582. a.login-to-save {
  583. display: block;
  584. padding: 1em;
  585. color: #444;
  586. border: none;
  587. border-radius: 0.5em;
  588. padding: 1em 0;
  589. width: 60%;
  590. outline: none;
  591. margin: 1em auto 0 auto;
  592. background-color: #aed581;
  593. }
  594. /* The save canvas PHP under the save/export buttons */
  595. .save-canvas-feedback p {
  596. text-align: center;
  597. color: #15af97;
  598. }
  599. .save-canvas-feedback span {
  600. color: #15af97;
  601. margin-right: 0.4em;
  602. }
  603. .save-canvas-feedback-fail p {
  604. text-align: center;
  605. color: #37474f;
  606. }
  607. .save-canvas-feedback-fail span {
  608. color: #37474f;
  609. margin-right: 0.4em;
  610. }
  611. /* Sharing the canvas */
  612. /* The share canvas button */
  613. .share_canvas{
  614. }
  615. .share_canvas_email{
  616. display: none;
  617. }
  618. .share_canvas_email input{
  619. width: 80%;
  620. padding: 1em;
  621. border-radius: 5px;
  622. border: 1px solid #444;
  623. }
  624. .share_canvas_email input:focus{
  625. outline: none;
  626. }
  627. /* The send btn */
  628. .share_canvas_send{
  629. border: none;
  630. border-radius: 0.5em;
  631. padding: 1em 0;
  632. width: 25%;
  633. outline: none;
  634. background-color: #546e7a;
  635. color: #ffffff;
  636. }
  637. /* ----------------------------------------------
  638. Footer
  639. ----------------------------------------------- */
  640. footer {
  641. font-size: 1em;
  642. margin-top: 2em;
  643. padding: 1.5em;
  644. background-color: #37474f;
  645. color: #ffffff;
  646. }
  647. footer .license a {
  648. color: #759BCF;
  649. }
  650. footer .license {
  651. margin: 0.5em auto 1.8em auto;
  652. }
  653. footer .contact p {
  654. color: #18AE90;
  655. }
  656. footer .contact h2 {
  657. color: #6bb5b4;
  658. }
  659. footer p.ethics-copy.terms, footer p.ethics-copy.privacy {
  660. text-decoration: none;
  661. padding: 0 0.5em;
  662. display: inline-block;
  663. }
  664. footer p.cc {
  665. margin-top: 2.8em;
  666. }
  667. footer p.terms, footer p.privacy {
  668. margin: 1.9em auto;
  669. }
  670. footer .privacy a {
  671. color: #a67de0;
  672. }
  673. footer .terms a {
  674. color: #aed581;
  675. }
  676. /* Footer license icons */
  677. footer .license-icons ul {
  678. list-style-type: none;
  679. margin-left: 0;
  680. padding-left: 0;
  681. }
  682. footer .license-icons li {
  683. display: inline-block;
  684. margin: 1.2em 0.2em;
  685. }
  686. footer .license-icons ul img {
  687. width: 3.5em;
  688. }
  689. /* ----------------------------------------------
  690. Dialog popups
  691. ----------------------------------------------- */
  692. div.dialog {
  693. display: none;
  694. }
  695. .ui-widget {
  696. font-family: 'Open Sans', sans-serif;
  697. }
  698. .ui-widget-content {
  699. border: none;
  700. padding: 0.75em 1.5em 0.75em 0.75em;
  701. background-color: rgba(236, 239, 241, 0.95) !important;
  702. }
  703. .ui-dialog {
  704. background-color: rgba(236, 239, 241, 0.95);
  705. left: 0;
  706. outline: 0 none;
  707. padding: 0 !important;
  708. position: absolute;
  709. top: 0;
  710. }
  711. .ui-dialog p {
  712. font-size: 0.95em;
  713. color: rgb(51, 51, 51);
  714. }
  715. .ui-widget-header {
  716. border: 0;
  717. border-radius: 0;
  718. }
  719. .ui-dialog button {
  720. border: none;
  721. border-radius: 0;
  722. background: none;
  723. outline: 0;
  724. color: #444;
  725. }
  726. .ui-button-icon-only span {
  727. margin-top: -10px !important;
  728. font-size: 2.5em;
  729. }
  730. /* ----------------------------------------------
  731. Masonry Colors (ADAPT)
  732. ----------------------------------------------- */
  733. .bg--blue {
  734. background-color: #7297ce;
  735. background-color: #85ade5;
  736. }
  737. .bg--darkblue {
  738. background-color: #7986cb;
  739. background-color: #8b99e0;
  740. }
  741. .bg--green {
  742. /* background-color: #94c356;
  743. background-color: #9dc963; */
  744. background-color: #aed581;
  745. }
  746. .bg--seagreen {
  747. /* background-color: #48D1CC; */
  748. background-color: #6bb5b4;
  749. }
  750. .bg--purple {
  751. /* background-color: #59358c; */
  752. background-color: #a281d1;
  753. }
  754. .bg--green1 {
  755. /* background-color: #15af97; */
  756. background-color: #29bca4;
  757. }
  758. .bg--x {
  759. background-color: #ce93d8;
  760. }
  761. .bg--mineral {
  762. background-color: #607d8b;
  763. }
  764. /* ================================================
  765. MEDIA QUERIES
  766. ================================================= */
  767. /* ----------------- 1 COL ----------------- */
  768. @media (max-width: 499px) {
  769. .masonry-layout7-5 {
  770. column-count: 1;
  771. column-gap: 0;
  772. }
  773. .masonry-layout4 {
  774. column-count: 1;
  775. column-gap: 0;
  776. }
  777. .masonry-layout2 {
  778. column-count: 1;
  779. column-gap: 0;
  780. }
  781. /* Adjust the height of culumns to maintain the layout */
  782. .field_01, .field_04, .field_09, .field_06 {
  783. min-height: 250px;
  784. }
  785. .field_03, .field_05, .field_02 {
  786. min-height: 250px;
  787. }
  788. .field_07, .field_08 {
  789. min-height: 250px;
  790. }
  791. /* Adjusting textarea heights */
  792. /* .added_item textarea { */
  793. .added_item div {
  794. height: 8em;
  795. }
  796. /* Form Header */
  797. .form-header {
  798. width: 100%;
  799. padding-bottom: 2em;
  800. }
  801. .form-header h1 {
  802. margin-bottom: 1em;
  803. }
  804. .form-header label {
  805. margin-top: 0.6em;
  806. display: block;
  807. text-align: left;
  808. }
  809. .form-header input {
  810. width: 95%;
  811. display: block;
  812. }
  813. .form-header p {
  814. margin-top: 1.85em;
  815. }
  816. /* Jump to */
  817. .jump-to {
  818. position: fixed;
  819. top: 0;
  820. z-index: 1;
  821. width: 100%;
  822. overflow: hidden;
  823. min-height: 64px;
  824. margin-left: -15px;
  825. border-radius: 0;
  826. padding-top: 2em;
  827. display: none;
  828. }
  829. .jump-to ul {
  830. width: 100%;
  831. display: none;
  832. }
  833. /*
  834. .jump-to .jump-to-arrow {
  835. display: inline-block;
  836. }
  837. */
  838. .jump-to label {
  839. cursor: pointer;
  840. }
  841. .rotate1 {
  842. transform: rotate(90deg);
  843. transition: .3s;
  844. }
  845. .rotate2 {
  846. transform: rotate(0deg);
  847. transition: .3s;
  848. }
  849. /* Saved tags */
  850. .saved-tags {
  851. padding: 1em 1em 0.3em 1em;
  852. }
  853. .saved-tags label {
  854. margin-right: 0.3em;
  855. }
  856. .saved-tags p {
  857. display: block;
  858. }
  859. /* Tag window */
  860. div#tag-window textarea#tag-description {
  861. width: 100%;
  862. }
  863. /* User area button and dropdown menu in the header: only shown when logged in */
  864. .form-header .user-profile {
  865. margin-left: 0;
  866. width: 95%;
  867. }
  868. /* The button When the drop down menu is open */
  869. .dropdown button#dropdownMenu1 {
  870. width: 100%;
  871. margin: auto;
  872. }
  873. /* Bootstrap dropdown classes */
  874. ul.dropdown-menu {
  875. margin-left: 0;
  876. width: 100%;
  877. margin: auto;
  878. }
  879. }
  880. /* ----------------- 2 COL ----------------- */
  881. @media (min-width: 500px) and (max-width: 934px) {
  882. .masonry-layout7-5 {
  883. column-count: 2;
  884. column-gap: 0;
  885. }
  886. .masonry-layout4 {
  887. column-count: 2;
  888. column-gap: 0;
  889. }
  890. /* Adjust the height of culumns to maintain the layout */
  891. .field_01, .field_04, .field_09, .field_06 {
  892. min-height: 460px;
  893. }
  894. .field_02 {
  895. min-height: 930px;
  896. }
  897. .field_03, .field_05 {
  898. min-height: 460px;
  899. }
  900. .field_07, .field_08 {
  901. min-height: 460px;
  902. }
  903. /* Adjusting textarea heights */
  904. /* .added_item textarea { */
  905. .added_item div {
  906. height: 8em;
  907. }
  908. /* Form Header */
  909. .form-header {
  910. width: 100%;
  911. }
  912. .form-header h1 {
  913. text-align: center;
  914. }
  915. .form-header label {
  916. margin-top: 1.8em;
  917. display: block;
  918. text-align: center;
  919. }
  920. .form-header input {
  921. width: 50%;
  922. display: block;
  923. margin: auto;
  924. }
  925. .form-header p {
  926. margin-top: 1.85em;
  927. }
  928. a.logo img {
  929. display: block;
  930. width: 40%;
  931. margin: auto;
  932. }
  933. /* Saved tags */
  934. .saved-tags {
  935. padding: 1em 1em 0.3em 1em;
  936. }
  937. .saved-tags label {
  938. margin-right: 0.3em;
  939. }
  940. .saved-tags p {
  941. display: block;
  942. }
  943. /* Tag window */
  944. div#tag-window textarea#tag-description {
  945. width: 100%;
  946. }
  947. /* User area button and dropdown menu in the header: only shown when logged in */
  948. .form-header .user-profile {
  949. margin-left: 0;
  950. width: 50%;
  951. margin: 2em auto;
  952. }
  953. /* The button When the drop down menu is open */
  954. .dropdown button#dropdownMenu1 {
  955. width: 60%;
  956. margin: 0 20%;
  957. }
  958. /* Bootstrap dropdown classes */
  959. ul.dropdown-menu {
  960. margin-left: 0;
  961. width: 60%;
  962. margin: 0 20%;
  963. }
  964. }
  965. /* ----------------- 4 COL Smaller ----------------- */
  966. @media (min-width: 935px) and (max-width: 991px) {
  967. .masonry-layout7-5 {
  968. column-count: 4;
  969. column-gap: 0;
  970. }
  971. .masonry-layout4 {
  972. column-count: 4;
  973. column-gap: 0;
  974. }
  975. /* Adjust the height of culumns to maintain the layout */
  976. .field_01, .field_04, .field_09, .field_06 {
  977. min-height: 500px;
  978. }
  979. .field_02 {
  980. min-height: 1010px;
  981. }
  982. .field_03, .field_05 {
  983. min-height: 500px;
  984. }
  985. .field_07, .field_08 {
  986. min-height: 500px;
  987. }
  988. /* Form Header */
  989. .form-header {
  990. width: 100%;
  991. }
  992. .form-header h1 {
  993. text-align: center;
  994. }
  995. .form-header label {
  996. margin-top: 1.8em;
  997. display: block;
  998. text-align: center;
  999. }
  1000. .form-header input {
  1001. width: 50%;
  1002. display: block;
  1003. margin: auto;
  1004. }
  1005. .form-header p {
  1006. margin-top: 1.85em;
  1007. }
  1008. /* User area button and dropdown menu in the header: only shown when logged in */
  1009. .form-header .user-profile {
  1010. margin-left: 0;
  1011. width: 60%;
  1012. margin: 2em auto;
  1013. transition: all 0.4s;
  1014. }
  1015. /* The button When the drop down menu is open */
  1016. .dropdown button#dropdownMenu1 {
  1017. width: 62%;
  1018. margin: 0 18%;
  1019. }
  1020. /* Bootstrap dropdown classes */
  1021. ul.dropdown-menu {
  1022. margin-left: 0;
  1023. width: 62%;
  1024. margin: 0 18%;
  1025. }
  1026. }
  1027. @media (min-width: 935px) and (max-width: 1153px) {
  1028. /* Adjusting textarea heights */
  1029. /* .added_item textarea { */
  1030. .added_item div {
  1031. height: 8em;
  1032. }
  1033. }
  1034. /* ---------------- COL 4 Large ---------------- */
  1035. @media (min-width: 992px) and (max-width: 1153px) {
  1036. .masonry-layout7-5 {
  1037. column-count: 4;
  1038. column-gap: 0;
  1039. }
  1040. .masonry-layout4 {
  1041. column-count: 4;
  1042. column-gap: 0;
  1043. }
  1044. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1045. /* Adjust the height of culumns to maintain the layout */
  1046. .field_01, .field_04, .field_09, .field_06 {
  1047. min-height: 480px;
  1048. }
  1049. .field_02 {
  1050. min-height: 970px;
  1051. }
  1052. .field_03, .field_05 {
  1053. min-height: 480px;
  1054. }
  1055. .field_07, .field_08 {
  1056. min-height: 480px;
  1057. }
  1058. /* Form Header */
  1059. .form-header {
  1060. width: 100%;
  1061. min-height: 8em;
  1062. }
  1063. .form-header h1 {
  1064. font-size: 1.7em;
  1065. }
  1066. .form-header label {
  1067. margin-top: 1.8em;
  1068. display: block;
  1069. text-align: left;
  1070. }
  1071. .form-header input {
  1072. width: 100%;
  1073. display: block;
  1074. }
  1075. .form-header p {
  1076. margin-top: 2em;
  1077. }
  1078. }
  1079. @media (min-width: 1052px) and (max-width: 1153px) {
  1080. /* Adjusting textarea heights */
  1081. /* .added_item textarea { */
  1082. .added_item div {
  1083. height: 8em;
  1084. }
  1085. .new_item {}
  1086. }
  1087. /* ---------------- COL 5 ---------------- */
  1088. @media (min-width: 1154px) and (max-width: 1650px) {
  1089. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1090. /* Adjust the height of culumns to maintain the layout */
  1091. .field_01, .field_02, .field_09 {
  1092. min-height: 917px;
  1093. }
  1094. .field_03, .field_05 {
  1095. min-height: 428px;
  1096. }
  1097. .field_04, .field_06 {
  1098. min-height: 478px;
  1099. }
  1100. .field_07, .field_08 {
  1101. min-height: 390px;
  1102. }
  1103. }
  1104. @media (min-width: 1154px) and (max-width: 1702px) {
  1105. /* Adjusting textarea heights */
  1106. /* .added_item textarea { */
  1107. .added_item div {
  1108. height: 8.5em;
  1109. }
  1110. .new_item {}
  1111. }
  1112. /* ---------------------------------------------- */
  1113. @media (min-width: 1651px) {
  1114. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1115. /* Adjust the height of culumns to maintain the layout */
  1116. .field_01, .field_02, .field_09 {
  1117. min-height: 775px;
  1118. }
  1119. .field_03, .field_05 {
  1120. min-height: 375px;
  1121. }
  1122. .field_04, .field_06 {
  1123. min-height: 390px;
  1124. }
  1125. .field_07, .field_08 {
  1126. min-height: 340px;
  1127. }
  1128. }
  1129. /* ---------------- Header space bug fix ---------------- */
  1130. @media (min-width: 500px) and (max-width: 991px) {
  1131. .form-header {
  1132. padding-bottom: 30px;
  1133. }
  1134. }
  1135. @media (min-width: 1154px) and (max-width: 1240px) {
  1136. input.proj_title {
  1137. margin-right: -9px;
  1138. }
  1139. }