canvas.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200
  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. display: block;
  819. }
  820. /* Saved tags */
  821. .saved-tags {
  822. padding: 1em 1em 0.3em 1em;
  823. }
  824. .saved-tags label {
  825. margin-right: 0.3em;
  826. }
  827. .saved-tags p {
  828. display: block;
  829. }
  830. /* Tag window */
  831. div#tag-window textarea#tag-description {
  832. width: 100%;
  833. }
  834. /* User area button and dropdown menu in the header: only shown when logged in */
  835. .form-header .user-profile {
  836. margin-left: 0;
  837. width: 95%;
  838. }
  839. /* The button When the drop down menu is open */
  840. .dropdown button#dropdownMenu1 {
  841. width: 100%;
  842. margin: auto;
  843. }
  844. /* Bootstrap dropdown classes */
  845. ul.dropdown-menu {
  846. margin-left: 0;
  847. width: 100%;
  848. margin: auto;
  849. }
  850. }
  851. /* ----------------- 2 COL ----------------- */
  852. @media (min-width: 500px) and (max-width: 934px) {
  853. .masonry-layout7-5 {
  854. column-count: 2;
  855. column-gap: 0;
  856. }
  857. .masonry-layout4 {
  858. column-count: 2;
  859. column-gap: 0;
  860. }
  861. /* Adjust the height of culumns to maintain the layout */
  862. .field_01, .field_04, .field_09, .field_06 {
  863. min-height: 460px;
  864. }
  865. .field_02 {
  866. min-height: 930px;
  867. }
  868. .field_03, .field_05 {
  869. min-height: 460px;
  870. }
  871. .field_07, .field_08 {
  872. min-height: 460px;
  873. }
  874. /* Adjusting textarea heights */
  875. /* .added_item textarea { */
  876. .added_item div {
  877. height: 8em;
  878. }
  879. /* Form Header */
  880. .form-header {
  881. width: 100%;
  882. }
  883. .form-header h1 {
  884. text-align: center;
  885. }
  886. .form-header label {
  887. margin-top: 1.8em;
  888. display: block;
  889. text-align: center;
  890. }
  891. .form-header input {
  892. width: 50%;
  893. display: block;
  894. margin: auto;
  895. }
  896. .form-header p {
  897. margin-top: 1.85em;
  898. }
  899. a.logo img {
  900. display: block;
  901. width: 40%;
  902. margin: auto;
  903. }
  904. /* Saved tags */
  905. .saved-tags {
  906. padding: 1em 1em 0.3em 1em;
  907. }
  908. .saved-tags label {
  909. margin-right: 0.3em;
  910. }
  911. .saved-tags p {
  912. display: block;
  913. }
  914. /* Tag window */
  915. div#tag-window textarea#tag-description {
  916. width: 100%;
  917. }
  918. /* User area button and dropdown menu in the header: only shown when logged in */
  919. .form-header .user-profile {
  920. margin-left: 0;
  921. width: 50%;
  922. margin: 2em auto;
  923. }
  924. /* The button When the drop down menu is open */
  925. .dropdown button#dropdownMenu1 {
  926. width: 60%;
  927. margin: 0 20%;
  928. }
  929. /* Bootstrap dropdown classes */
  930. ul.dropdown-menu {
  931. margin-left: 0;
  932. width: 60%;
  933. margin: 0 20%;
  934. }
  935. }
  936. /* ----------------- 4 COL Smaller ----------------- */
  937. @media (min-width: 935px) and (max-width: 991px) {
  938. .masonry-layout7-5 {
  939. column-count: 4;
  940. column-gap: 0;
  941. }
  942. .masonry-layout4 {
  943. column-count: 4;
  944. column-gap: 0;
  945. }
  946. /* Adjust the height of culumns to maintain the layout */
  947. .field_01, .field_04, .field_09, .field_06 {
  948. min-height: 500px;
  949. }
  950. .field_02 {
  951. min-height: 1010px;
  952. }
  953. .field_03, .field_05 {
  954. min-height: 500px;
  955. }
  956. .field_07, .field_08 {
  957. min-height: 500px;
  958. }
  959. /* Form Header */
  960. .form-header {
  961. width: 100%;
  962. }
  963. .form-header h1 {
  964. text-align: center;
  965. }
  966. .form-header label {
  967. margin-top: 1.8em;
  968. display: block;
  969. text-align: center;
  970. }
  971. .form-header input {
  972. width: 50%;
  973. display: block;
  974. margin: auto;
  975. }
  976. .form-header p {
  977. margin-top: 1.85em;
  978. }
  979. /* User area button and dropdown menu in the header: only shown when logged in */
  980. .form-header .user-profile {
  981. margin-left: 0;
  982. width: 60%;
  983. margin: 2em auto;
  984. transition: all 0.4s;
  985. }
  986. /* The button When the drop down menu is open */
  987. .dropdown button#dropdownMenu1 {
  988. width: 62%;
  989. margin: 0 18%;
  990. }
  991. /* Bootstrap dropdown classes */
  992. ul.dropdown-menu {
  993. margin-left: 0;
  994. width: 62%;
  995. margin: 0 18%;
  996. }
  997. }
  998. @media (min-width: 935px) and (max-width: 1153px) {
  999. /* Adjusting textarea heights */
  1000. /* .added_item textarea { */
  1001. .added_item div {
  1002. height: 8em;
  1003. }
  1004. }
  1005. /* ---------------- COL 4 Large ---------------- */
  1006. @media (min-width: 992px) and (max-width: 1153px) {
  1007. .masonry-layout7-5 {
  1008. column-count: 4;
  1009. column-gap: 0;
  1010. }
  1011. .masonry-layout4 {
  1012. column-count: 4;
  1013. column-gap: 0;
  1014. }
  1015. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1016. /* Adjust the height of culumns to maintain the layout */
  1017. .field_01, .field_04, .field_09, .field_06 {
  1018. min-height: 480px;
  1019. }
  1020. .field_02 {
  1021. min-height: 970px;
  1022. }
  1023. .field_03, .field_05 {
  1024. min-height: 480px;
  1025. }
  1026. .field_07, .field_08 {
  1027. min-height: 480px;
  1028. }
  1029. /* Form Header */
  1030. .form-header {
  1031. width: 100%;
  1032. min-height: 8em;
  1033. }
  1034. .form-header h1 {
  1035. font-size: 1.7em;
  1036. }
  1037. .form-header label {
  1038. margin-top: 1.8em;
  1039. display: block;
  1040. text-align: left;
  1041. }
  1042. .form-header input {
  1043. width: 100%;
  1044. display: block;
  1045. }
  1046. .form-header p {
  1047. margin-top: 2em;
  1048. }
  1049. }
  1050. @media (min-width: 1052px) and (max-width: 1153px) {
  1051. /* Adjusting textarea heights */
  1052. /* .added_item textarea { */
  1053. .added_item div {
  1054. height: 8em;
  1055. }
  1056. .new_item {}
  1057. }
  1058. /* ---------------- COL 5 ---------------- */
  1059. @media (min-width: 1154px) and (max-width: 1650px) {
  1060. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1061. /* Adjust the height of culumns to maintain the layout */
  1062. .field_01, .field_02, .field_09 {
  1063. min-height: 917px;
  1064. }
  1065. .field_03, .field_05 {
  1066. min-height: 428px;
  1067. }
  1068. .field_04, .field_06 {
  1069. min-height: 478px;
  1070. }
  1071. .field_07, .field_08 {
  1072. min-height: 390px;
  1073. }
  1074. }
  1075. @media (min-width: 1154px) and (max-width: 1702px) {
  1076. /* Adjusting textarea heights */
  1077. /* .added_item textarea { */
  1078. .added_item div {
  1079. height: 8.5em;
  1080. }
  1081. .new_item {}
  1082. }
  1083. /* ---------------------------------------------- */
  1084. @media (min-width: 1651px) {
  1085. /* DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM */
  1086. /* Adjust the height of culumns to maintain the layout */
  1087. .field_01, .field_02, .field_09 {
  1088. min-height: 775px;
  1089. }
  1090. .field_03, .field_05 {
  1091. min-height: 375px;
  1092. }
  1093. .field_04, .field_06 {
  1094. min-height: 390px;
  1095. }
  1096. .field_07, .field_08 {
  1097. min-height: 340px;
  1098. }
  1099. }
  1100. /* ---------------- Header space bug fix ---------------- */
  1101. @media (min-width: 500px) and (max-width: 991px) {
  1102. .form-header {
  1103. padding-bottom: 30px;
  1104. }
  1105. }
  1106. @media (min-width: 1154px) and (max-width: 1240px) {
  1107. input.proj_title {
  1108. margin-right: -9px;
  1109. }
  1110. }