canvas.css 25 KB

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