canvas.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  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. DROPDOWN MENU (User DASHBORD menu)
  68. -----------------------------------*/
  69. /*User area button and dropdown menu in the header :
  70. only shown when logged in*/
  71. .form-header .user-profile {
  72. font-size: 1em;
  73. margin-top: 1.8em;
  74. margin-right: 0.3em;
  75. color: #444;
  76. min-width: 80%;
  77. margin-left: 3.5em;
  78. }
  79. .form-header .user-profile img {
  80. width: 2.6em;
  81. margin-right: 0.5em;
  82. }
  83. .form-header .user-profile button {
  84. padding: 0.2em 1em;
  85. width: 90%;
  86. border: none;
  87. border-radius: 2px;
  88. outline: 0;
  89. background-color: transparent;
  90. transition: all 0.5s;
  91. }
  92. .form-header .user-profile button:hover {
  93. padding: 0.2em;
  94. background-color: #fff;
  95. }
  96. /*Boortstrap dropdown classes*/
  97. ul.dropdown-menu {
  98. border: none;
  99. border-radius: 2px;
  100. width: 90%;
  101. margin: 0 5%;
  102. box-shadow: none;
  103. background-color: #48585f;
  104. }
  105. ul.dropdown-menu a {
  106. color: #fff;
  107. }
  108. /*The button When the drop down menu is open*/
  109. .dropdown.open button#dropdownMenu1 {
  110. background-color: #fff;
  111. }
  112. /* ------------------------------
  113. Masonry Blocks
  114. ------------------------------ */
  115. .masonry-layout8-5 {
  116. -webkit-column-count: 5;
  117. /* Chrome, Safari, Opera */
  118. -moz-column-count: 5;
  119. /* Firefox */
  120. column-count: 5;
  121. -webkit-column-gap: 0;
  122. /* Chrome, Safari, Opera */
  123. -moz-column-gap: 0;
  124. /* Firefox */
  125. column-gap: 0;
  126. }
  127. .masonry-layout4 {
  128. -webkit-column-count: 4;
  129. /* Chrome, Safari, Opera */
  130. -moz-column-count: 4;
  131. /* Firefox */
  132. column-count: 4;
  133. -webkit-column-gap: 0;
  134. /* Chrome, Safari, Opera */
  135. -moz-column-gap: 0;
  136. /* Firefox */
  137. column-gap: 0;
  138. }
  139. .masonry-layout__panel {
  140. break-inside: avoid;
  141. padding: 0.36em;
  142. }
  143. .masonry-layout__panel-content {
  144. padding: 5px 4px;
  145. border-radius: 10px;
  146. }
  147. /* ---------------------------------
  148. Field Content & Items
  149. ----------------------------------- */
  150. /*The field introduction text*/
  151. .intro {
  152. padding: 1em 1.3em 0 1.3em;
  153. color: rgba(0, 0, 0, 0.6);
  154. font-style: italic;
  155. }
  156. /*The description text toggler btn*/
  157. .intro-toggle {
  158. padding: 0.25em 1.2em;
  159. border: none;
  160. outline: none;
  161. background-color: transparent;
  162. }
  163. /*the show/hide text bootstrap glyphicon icon*/
  164. .intro-toggle-icon {
  165. padding: 0.4em;
  166. font-size: 1em;
  167. }
  168. .field-title {
  169. font-size: 1.4em;
  170. margin-left: 0.8em;
  171. line-height: 1.5;
  172. }
  173. /*Item list in the field*/
  174. ul.item_list {
  175. list-style-type: none;
  176. padding-left: 0;
  177. width: 100%;
  178. /*to make a place holder for empty lists.
  179. Being able to drop cards in empty fields*/
  180. min-height: 4em;
  181. }
  182. li.added_item {
  183. width: 100%;
  184. margin: 0.5em auto;
  185. height: auto;
  186. overflow: visible;
  187. cursor: move;
  188. }
  189. ul.item_list textarea {
  190. font-size: 0.95em;
  191. padding: 0.5em 0.5em 0.5em 1em;
  192. border-radius: 0.35em;
  193. border: 1px solid rgba(255, 255, 255, 0.2);
  194. width: 87%;
  195. max-width: 87%;
  196. outline: none;
  197. background-color: rgba(255, 255, 255, 0.6);
  198. /*for auto expantion jQuery code*/
  199. box-sizing: padding-box;
  200. overflow: hidden;
  201. }
  202. /* -----------------------------------------
  203. List item handles : bootstrap glyphicon
  204. -----------------------------------------*/
  205. span.handle {
  206. position: relative;
  207. /* Neccessary for handle in sortable to work*/
  208. top: -3em;
  209. right: -0.18em;
  210. color: #fff;
  211. font-size: 1.2em;
  212. cursor: move;
  213. }
  214. /* the remove icon for each item*/
  215. span.remove {
  216. top: -50px;
  217. right: 0px;
  218. margin-right: -22px;
  219. font-size: 1.2em;
  220. font-weight: 400;
  221. color: #fff;
  222. border-radius: 100%;
  223. cursor: auto;
  224. }
  225. span.remove:hover {
  226. color: rgba(0, 0, 0, 0.5);
  227. }
  228. /* Placeholder for sorting items*/
  229. .sort-placeholder {
  230. border-radius: 0.35em;
  231. background-color: rgba(40, 40, 40, 0.35);
  232. width: 85%;
  233. height: 2.5em;
  234. padding: 0.5em 0.5em;
  235. margin-left: 1em;
  236. }
  237. /* -----------------------------------
  238. USER INPUT:
  239. Add new items in each field
  240. ----------------------------------- */
  241. .user-input {
  242. width: 100%;
  243. margin-left: 1em;
  244. margin-top: 2em;
  245. padding-bottom: 1.5em;
  246. display: none;
  247. /* Shown (slide up and down) by jQuery when adding ideas*/
  248. }
  249. /*The div containing all the user input things*/
  250. .add_box {
  251. /*make room for the absolutely positioned div at the buttom each card
  252. always keeping a distance from the buttom of the card (as high as the height of the absolutely positined icon div + some distance)*/
  253. padding-bottom: 5.3em;
  254. }
  255. /*Ad an idea link*/
  256. a.add-idea {
  257. color: #fff;
  258. margin-left: 1em;
  259. margin-top: 2em;
  260. padding: 1em 1em 1em 2em;
  261. background-image: url('../icons/lamp.svg');
  262. background-size: 1.4em;
  263. background-position: left;
  264. background-repeat: no-repeat;
  265. }
  266. /*textarea of a new item input*/
  267. textarea.new_item {
  268. width: 90%;
  269. border: 1px solid #fff;
  270. border-radius: 0.35em;
  271. outline: none;
  272. padding-left: 0.5em;
  273. /*for auto expantion jQuery code*/
  274. box-sizing: border-box;
  275. overflow: hidden;
  276. }
  277. /*The add button*/
  278. .add_btn {
  279. background-color: transparent;
  280. color: #fff;
  281. padding: 0.25em 1.2em;
  282. border: 0.12em solid #fff;
  283. border-radius: 0.5em;
  284. }
  285. .add_btn:hover {
  286. color: #222;
  287. border-color: #222;
  288. }
  289. textarea.expandable {
  290. box-sizing: border-box;
  291. /*remove the user resizing for the text fields*/
  292. resize: none;
  293. }
  294. span.chars {
  295. font-size: 1.1em;
  296. color: rgba(255, 255, 255, 0.7);
  297. }
  298. /* ----------------------------------------
  299. FIELD ID ICONS
  300. -----------------------------------------*/
  301. /* Background images for each field (field icons)*/
  302. .field_01 {
  303. background-image: url('../icons/field1.svg');
  304. }
  305. .field_02 {
  306. background-image: url('../icons/field2.svg');
  307. }
  308. .field_03 {
  309. background-image: url('../icons/field3.svg');
  310. }
  311. .field_04 {
  312. background-image: url('../icons/field4.svg');
  313. }
  314. .field_05 {
  315. background-image: url('../icons/field5.svg');
  316. }
  317. .field_06 {
  318. background-image: url('../icons/field6.svg');
  319. }
  320. .field_07 {
  321. background-image: url('../icons/field7.svg');
  322. }
  323. .field_08 {
  324. background-image: url('../icons/field8.svg');
  325. }
  326. .field_09 {
  327. background-image: url('../icons/field9.svg');
  328. }
  329. .field_10 {
  330. background-image: url('../icons/field10.svg');
  331. }
  332. .field_11 {
  333. background-image: url('../icons/field11.svg');
  334. }
  335. .field_12 {
  336. background-image: url('../icons/field12.svg');
  337. }
  338. /*general background options for all fields*/
  339. .field_01, .field_02, .field_03, .field_04, .field_05, .field_06, .field_07, .field_08, .field_09, .field_10, .field_11, .field_12 {
  340. /*make the svg images cover the whole width*/
  341. background-size: 106%;
  342. background-position: 100% 100%;
  343. /*background-position:bottom left;*/
  344. background-repeat: no-repeat;
  345. }
  346. /* ---------------------------------
  347. FORM Import & Export buttons
  348. ----------------------------------- */
  349. .imp-exp-btn {
  350. margin-top: 2.5em;
  351. }
  352. button.json_exp, button.share_canvas, .pdf_exp {
  353. border: none;
  354. border-radius: 0.5em;
  355. padding: 1em 0;
  356. width: 60%;
  357. outline: none;
  358. }
  359. button.json_exp:hover, button.share_canvas:hover, .pdf_exp:hover {
  360. opacity: 0.6;
  361. }
  362. button.json_exp {
  363. background-color: #aed581;
  364. margin: 1em auto 0 auto;
  365. }
  366. button.share_canvas {
  367. background-color: #a67de0;
  368. margin: 0.5em auto 0.4em auto;
  369. }
  370. .pdf_exp {
  371. background-color: #85ade5;
  372. margin: 0.5em auto 0.4em auto;
  373. }
  374. /*the sign up or login to save link for unregistered users*/
  375. a.login-to-save {
  376. display: block;
  377. padding: 1em;
  378. color: #444;
  379. border: none;
  380. border-radius: 0.5em;
  381. padding: 1em 0;
  382. width: 60%;
  383. outline: none;
  384. margin: 1em auto 0 auto;
  385. background-color: #aed581;
  386. }
  387. /*The save canvas php under the save/export buttons*/
  388. .save-canvas-feedback p {
  389. text-align: center;
  390. color: #15af97;
  391. }
  392. .save-canvas-feedback span {
  393. color: #15af97;
  394. margin-right: 0.4em;
  395. }
  396. .save-canvas-feedback-fail p {
  397. text-align: center;
  398. color: #37474f;
  399. }
  400. .save-canvas-feedback-fail span {
  401. color: #37474f;
  402. margin-right: 0.4em;
  403. }
  404. /*SHARING THE CANVAS*/
  405. /*share canvas button*/
  406. .share_canvas{
  407. }
  408. .share_canvas_email{
  409. display:none;
  410. }
  411. .share_canvas_email input{
  412. width:80%;
  413. padding:1em;
  414. border-radius:5px;
  415. border:1px solid #444;
  416. }
  417. .share_canvas_email input:focus{
  418. outline :none;
  419. }
  420. /*the send btn*/
  421. .share_canvas_send{
  422. border: none;
  423. border-radius: 0.5em;
  424. padding: 1em 0;
  425. width: 25%;
  426. outline: none;
  427. background-color:#546e7a;
  428. color:#fff;
  429. }
  430. /* ------------------------------
  431. Footer
  432. ------------------------------ */
  433. footer {
  434. font-size: 1em;
  435. margin-top: 2em;
  436. padding: 1.5em;
  437. background-color: #37474f;
  438. color: white;
  439. }
  440. footer .license a {
  441. color: #759BCF;
  442. }
  443. footer .license {
  444. margin: 0.5em auto 1.8em auto;
  445. }
  446. footer .contact p {
  447. color: #18AE90;
  448. }
  449. footer .contact h2 {
  450. color: #6bb5b4;
  451. }
  452. footer p.ethics-copy.terms, footer p.ethics-copy.privacy {
  453. text-decoration: none;
  454. padding: 0 0.5em;
  455. display: inline-block;
  456. }
  457. footer p.cc {
  458. margin-top: 2.8em;
  459. }
  460. footer p.terms, footer p.privacy {
  461. margin: 1.9em auto;
  462. }
  463. footer .privacy a {
  464. color: #a67de0;
  465. }
  466. footer .terms a {
  467. color: #aed581;
  468. }
  469. /*footer license icons */
  470. footer .license-icons ul {
  471. list-style-type: none;
  472. margin-left: 0;
  473. padding-left: 0;
  474. }
  475. footer .license-icons li {
  476. display: inline-block;
  477. margin: 1.2em 0.2em;
  478. }
  479. footer .license-icons ul img {
  480. width: 3.5em;
  481. }
  482. /* ------------------------------
  483. Masonry Colors (ADAPT)
  484. ------------------------------ */
  485. .bg--blue {
  486. background-color: #7297ce;
  487. background-color: #85ade5;
  488. }
  489. .bg--darkblue {
  490. background-color: #7986cb;
  491. background-color: #8b99e0;
  492. }
  493. .bg--green {
  494. /*background-color: #94c356;
  495. background-color: #9dc963;*/
  496. background-color: #aed581;
  497. }
  498. .bg--seagreen {
  499. /*background-color: #48D1CC;*/
  500. background-color: #6bb5b4;
  501. }
  502. .bg--purple {
  503. /*background-color: #59358c;*/
  504. background-color: #a281d1;
  505. }
  506. .bg--green1 {
  507. /*background-color: #15af97;*/
  508. background-color: #29bca4;
  509. }
  510. .bg--x {
  511. background-color: #ce93d8;
  512. }
  513. .bg--mineral {
  514. background-color: #607d8b;
  515. }
  516. /* =================================================
  517. MEDIA QUERIES
  518. ==================================================*/
  519. /* ----------------- 1 COL ------------------ */
  520. @media (max-width: 499px) {
  521. .masonry-layout8-5 {
  522. column-count: 1;
  523. column-gap: 0;
  524. }
  525. .masonry-layout4 {
  526. column-count: 1;
  527. column-gap: 0;
  528. }
  529. /*Adjust the height of culumns to maintain the layout*/
  530. .field_01, .field_06, .field_12, .field_08 {
  531. min-height: 250px;
  532. }
  533. .field_05, .field_11, .field_07, .field_02 {
  534. min-height: 250px;
  535. }
  536. .field_03, .field_09, .field_10, .field_04 {
  537. min-height: 250px;
  538. }
  539. /* Form Header */
  540. .form-header {
  541. width: 100%;
  542. padding-bottom: 2em;
  543. }
  544. .form-header h1 {
  545. margin-bottom: 1em;
  546. }
  547. .form-header label {
  548. margin-top: 0.6em;
  549. display: block;
  550. text-align: left;
  551. }
  552. .form-header input {
  553. width: 95%;
  554. display: block;
  555. }
  556. .form-header p {
  557. margin-top: 1.85em;
  558. }
  559. /*User area button and dropdown menu in the header :
  560. only shown when logged in*/
  561. .form-header .user-profile {
  562. margin-left: 0;
  563. width: 95%;
  564. }
  565. /*The button When the drop down menu is open*/
  566. .dropdown button#dropdownMenu1 {
  567. width: 100%;
  568. margin: auto;
  569. }
  570. /*Boortstrap dropdown classes*/
  571. ul.dropdown-menu {
  572. margin-left: 0;
  573. width: 100%;
  574. margin: auto;
  575. }
  576. }
  577. /* ----------------- 2 COL ------------------ */
  578. @media (min-width: 500px) and (max-width: 934px) {
  579. .masonry-layout8-5 {
  580. column-count: 2;
  581. column-gap: 0;
  582. }
  583. .masonry-layout4 {
  584. column-count: 2;
  585. column-gap: 0;
  586. }
  587. /*Adjust the height of culumns to maintain the layout*/
  588. .field_01, .field_06, .field_12, .field_08 {
  589. min-height: 460px;
  590. }
  591. .field_05, .field_11, .field_07, .field_02 {
  592. min-height: 460px;
  593. }
  594. .field_03, .field_09, .field_10, .field_04 {
  595. min-height: 460px;
  596. }
  597. /* Form Header */
  598. .form-header {
  599. width: 100%;
  600. }
  601. .form-header h1 {
  602. text-align: center;
  603. }
  604. .form-header label {
  605. margin-top: 1.8em;
  606. display: block;
  607. text-align: center;
  608. }
  609. .form-header input {
  610. width: 50%;
  611. display: block;
  612. margin: auto;
  613. }
  614. .form-header p {
  615. margin-top: 1.85em;
  616. }
  617. a.logo img {
  618. display: block;
  619. width: 40%;
  620. margin: auto;
  621. }
  622. /*User area button and dropdown menu in the header :
  623. only shown when logged in*/
  624. .form-header .user-profile {
  625. margin-left: 0;
  626. width: 50%;
  627. margin: 2em auto;
  628. }
  629. /*The button When the drop down menu is open*/
  630. .dropdown button#dropdownMenu1 {
  631. width: 60%;
  632. margin: 0 20%;
  633. }
  634. /*Boortstrap dropdown classes*/
  635. ul.dropdown-menu {
  636. margin-left: 0;
  637. width: 60%;
  638. margin: 0 20%;
  639. }
  640. }
  641. @media (min-width: 502px)and (max-width: 708px) {
  642. /*adjusting textarea heights*/
  643. .added_item textarea {
  644. height: 8em;
  645. /*background-color:orange;*/
  646. }
  647. }
  648. /* ----------------- 4 COL Smaller------------------- */
  649. @media (min-width: 935px) and (max-width: 991px) {
  650. .masonry-layout8-5 {
  651. column-count: 4;
  652. column-gap: 0;
  653. }
  654. .masonry-layout4 {
  655. column-count: 4;
  656. column-gap: 0;
  657. }
  658. /*Adjust the height of culumns to maintain the layout*/
  659. .field_01, .field_06, .field_12, .field_08 {
  660. min-height: 500px;
  661. }
  662. .field_05, .field_11, .field_07, .field_02 {
  663. min-height: 500px;
  664. }
  665. .field_03, .field_09, .field_10, .field_04 {
  666. min-height: 500px;
  667. }
  668. /* Form Header */
  669. .form-header {
  670. width: 100%;
  671. }
  672. .form-header h1 {
  673. text-align: center;
  674. }
  675. .form-header label {
  676. margin-top: 1.8em;
  677. display: block;
  678. text-align: center;
  679. }
  680. .form-header input {
  681. width: 50%;
  682. display: block;
  683. margin: auto;
  684. }
  685. .form-header p {
  686. margin-top: 1.85em;
  687. }
  688. /*User area button and dropdown menu in the header :
  689. only shown when logged in*/
  690. .form-header .user-profile {
  691. margin-left: 0;
  692. width: 60%;
  693. margin: 2em auto;
  694. transition: all 0.4s;
  695. }
  696. /*The button When the drop down menu is open*/
  697. .dropdown button#dropdownMenu1 {
  698. width: 62%;
  699. margin: 0 18%;
  700. }
  701. /*Boortstrap dropdown classes*/
  702. ul.dropdown-menu {
  703. margin-left: 0;
  704. width: 62%;
  705. margin: 0 18%;
  706. }
  707. }
  708. @media (min-width: 935px) and (max-width: 1153px) {
  709. /*adjusting textarea heights*/
  710. .added_item textarea {
  711. height: 8.6em;
  712. /*background-color:seagreen;*/
  713. }
  714. }
  715. /* ------------ COL 4 Large ---------------- */
  716. @media (min-width: 992px) and (max-width: 1153px) {
  717. .masonry-layout8-5 {
  718. column-count: 4;
  719. column-gap: 0;
  720. }
  721. .masonry-layout4 {
  722. column-count: 4;
  723. column-gap: 0;
  724. }
  725. /*DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM*/
  726. /*Adjust the height of culumns to maintain the layout*/
  727. .field_01, .field_06, .field_12, .field_08 {
  728. min-height: 480px;
  729. }
  730. .field_05, .field_11, .field_07, .field_02 {
  731. min-height: 480px;
  732. }
  733. .field_03, .field_09, .field_10, .field_04 {
  734. min-height: 480px;
  735. }
  736. /* Form Header */
  737. .form-header {
  738. width: 100%;
  739. min-height: 8em;
  740. }
  741. .form-header h1 {
  742. font-size: 1.7em;
  743. }
  744. .form-header label {
  745. margin-top: 1.8em;
  746. display: block;
  747. text-align: left;
  748. }
  749. .form-header input {
  750. width: 100%;
  751. display: block;
  752. }
  753. .form-header p {
  754. margin-top: 2em;
  755. }
  756. }
  757. @media (min-width: 1052px) and (max-width: 1152px) {
  758. /*adjusting textarea heights*/
  759. .added_item textarea {
  760. height: 6.5em;
  761. /*background-color:khaki;*/
  762. }
  763. .new_item {}
  764. }
  765. /* --------------- 5 COL ----------------- */
  766. @media (min-width: 1154px) and (max-width: 1650px) {
  767. /*DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM*/
  768. /*Adjust the height of culumns to maintain the layout*/
  769. .field_01, .field_02 {
  770. min-height: 894px;
  771. }
  772. .field_05, .field_07, .field_11 {
  773. min-height: 405px;
  774. }
  775. .field_06, .field_08, .field_12 {
  776. min-height: 478px;
  777. }
  778. .field_03, .field_09, .field_10, .field_04 {
  779. min-height: 390px;
  780. }
  781. }
  782. @media (min-width: 1154px)and (max-width: 1702px) {
  783. /*adjusting textarea heights*/
  784. .added_item textarea {
  785. height: 8.5em;
  786. /*background-color:#535353;*/
  787. }
  788. .new_item {}
  789. }
  790. /* ----------------------------------------- */
  791. @media (min-width: 1651px) {
  792. /*DESKTOP version: HOLDING THE CANVAS DEFAULT LAYOUT FORM*/
  793. /*Adjust the height of culumns to maintain the layout*/
  794. .field_01, .field_02 {
  795. min-height: 765px;
  796. }
  797. .field_05, .field_07, .field_11 {
  798. min-height: 365px;
  799. }
  800. .field_06, .field_08, .field_12 {
  801. min-height: 390px;
  802. }
  803. .field_03, .field_09, .field_10, .field_04 {
  804. min-height: 340px;
  805. }
  806. }