canvas.css 25 KB

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