editor.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /********** PÁGINA **********/
  2. .marcoCartel { border: 1px solid #969696; }
  3. .ajustadas { max-width: 160px; width: 100%; background: #969696; }
  4. .ajustadas .gjs-block { color: #FFFFFF; cursor: pointer; background: #696969; }
  5. .ajustadas .gjs-block:hover { color: #001D68; }
  6. .ajustadas.gjs-blocks-c .icono { font-size: 3em; }
  7. #modalPlantilla .close{ position: absolute; top: 1.5rem; right: 1.5rem; }
  8. #modalPlantilla img{ width: 100%; }
  9. /********** BUILDER **********/
  10. #cartel { border: 1px solid #969696; max-width: 1300px; }
  11. .gjs-editor { display: flex; flex-direction: row; }
  12. .gjs-cv-canvas { height: 100%; width: 100%; max-width: 1140px; position: relative; top: 0; }
  13. .gjs-pn-panels { display: flex; flex-direction: column; max-width: 160px; width: 100% }
  14. .gjs-pn-views, .gjs-pn-views-container { width: 100%; padding: 0; }
  15. .gjs-pn-panel { position: relative; top: 0; left: 0; right: 0; }
  16. .gjs-block-category .gjs-title, .gjs-sm-sector .gjs-sm-title { background: #696969; }
  17. .gjs-one-bg { background-color: #969696; }
  18. /* Secondary color for the text color */
  19. .gjs-two-color { color: #FFFFFF; }
  20. /* Tertiary color for the background */
  21. .gjs-three-bg { background-color: #D21034; color: #FFFFFF; }
  22. /* Quaternary color for the text color */
  23. .gjs-four-color, .gjs-four-color-h:hover { color: #001D68; }
  24. .gjs-block { border-radius: 0; margin: 0; width: 50%; padding: 0.5vw; }
  25. .gjs-block:hover, .gjs-pn-btn:hover{ background: #FFFFFF; }
  26. .gjs-pn-btn { margin: 0; }
  27. .gjs-pn-btn:hover{ color: #001D68; }
  28. .gjs-mdl-container { font-family: 'indivisa-text'; overflow-y: auto; position: fixed; background-color: #969696; }
  29. #gjs-sm-font-family .gjs-fields .gjs-field.gjs-select { visibility: hidden; }
  30. #gjs-sm-font-family .gjs-fields:before { content: 'No Disponible'; }
  31. /* Bloques con Íconos*/
  32. .bloque{ -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; -o-user-select: none;
  33. user-select: none; cursor: pointer; width: 40px; height: 40px; margin: 5px; box-sizing: border-box; display: flex; justify-content: center;
  34. align-items: center; border: 1px solid rgba(0,0,0,0.2); border-radius: 3px; box-shadow: 0 1px 0 0 rgba(0,0,0,0.15); transition: all 0.2s ease 0s;
  35. transition-property: all; transition-property: box-shadow, color;
  36. }
  37. .bloque:hover{ background: #FFFFFF; box-shadow: 0 3px 4px 0 rgba(0,0,0,0.15); }
  38. .bloque .iconos{ font-size: 20px; -webkit-transition: font-size .2s ease; -moz-transition: font-size .2s ease; -o-transition: font-size .2s ease; transition: font-size .2s ease; }
  39. .bloque:hover .iconos{ font-size: 35px; }
  40. .bloqueGde{ width: 150px; height: 150px; margin: 0.5rem; }
  41. .bloqueGde > div{ width: 75%; height: 75%; background: #FFFFFF; }
  42. .bloqueGde > div.circulo{ border-radius: 50%; }
  43. .bloqueGde > div.redondeado{ border-radius: 11px; }
  44. .bloqueGde:hover > div{ background: #001D68; }