Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. :root {
  2. --input-bg-color: var(--background-color);
  3. --input-border-color: var(--border-color);
  4. --input-text-color: var(--text-color);
  5. --input-placeholder-color: var(--sub-text-color);
  6. --input-invalid-border-color: var(--border-color);
  7. --input-invalid-text-color: var(--text-color);
  8. --input-border: 1px solid var(--input-border-color);
  9. --alpha-lighten: 70%;
  10. --font-size: 17px;
  11. --font-weight: 400;
  12. --material-font-size: 17px;
  13. --material-font-weight: 400;
  14. --font-size--mini: calc(var(--font-size) - 3px);
  15. --font-weight--large: 500;
  16. --background-color--input: transparent;
  17. }
  18. html {
  19. height: 100%;
  20. width: 100%;
  21. }
  22. body {
  23. position: absolute;
  24. overflow: hidden;
  25. top: 0;
  26. right: 0;
  27. left: 0;
  28. bottom: 0;
  29. padding: 0;
  30. margin: 0;
  31. -webkit-text-size-adjust: 100%;
  32. touch-action: manipulation;
  33. }
  34. html, body, div, span, applet, object, iframe,
  35. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  36. a, abbr, acronym, address, big, cite, code,
  37. del, dfn, em, img, ins, kbd, q, s, samp,
  38. small, strike, strong, sub, sup, tt, var,
  39. b, u, i, center, dl, dt, dd, ol, ul, li,
  40. fieldset, form, label, legend,
  41. table, caption, tbody, tfoot, thead, tr, th, td,
  42. article, aside, canvas, details, embed,
  43. figure, figcaption, footer, header, hgroup,
  44. menu, nav, output, ruby, section, summary,
  45. time, mark, audio, video {
  46. user-select: none;
  47. -webkit-tap-highlight-color: var(--tap-highlight-color);
  48. -webkit-touch-callout: none;
  49. }
  50. input, textarea, select {
  51. user-select: auto;
  52. -moz-user-select: text;
  53. -webkit-touch-callout: none;
  54. }
  55. a, button, input, textarea, select {
  56. touch-action: manipulation;
  57. }
  58. input:active, input:focus, textarea:active, textarea:focus, select:active, select:focus {
  59. outline: none;
  60. }
  61. h1 {
  62. font-size: 36px;
  63. }
  64. h2 {
  65. font-size: 30px;
  66. }
  67. h3 {
  68. font-size: 24px;
  69. }
  70. h4, h5, h6 {
  71. font-size: 18px;
  72. }