style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. body {
  2. border: 1px solid yellow;
  3. font: 18px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  4. color: #c9d1d9;
  5. display: flex;
  6. justify-content: space-between;
  7. }
  8. h1, h2, h3 {
  9. line-height: 1.2;
  10. }
  11. h1 {
  12. margin: 0 0 .1em;
  13. color: #ff6e40;
  14. font-size: 10mm;
  15. }
  16. .subtitle {
  17. color: #0d1117;
  18. font-size: 14px;
  19. }
  20. h3 {
  21. margin-top: 0;
  22. margin-bottom: .2em;
  23. color: #ff6e40;
  24. }
  25. .intestazione {
  26. padding: 0.5rem 1.5rem;
  27. display: grid;
  28. grid-template-columns: auto auto auto;
  29. margin-bottom: 0.5rem;
  30. }
  31. .logo,
  32. .qrcode {
  33. display: flex;
  34. align-items: center;
  35. height: 100%;
  36. }
  37. .qrcode {
  38. justify-content: flex-end;
  39. }
  40. .logo img,
  41. .qrcode img {
  42. width: 15%;
  43. }
  44. #events {
  45. display: grid;
  46. grid-template-columns: auto auto auto auto;
  47. grid-template-rows: auto auto auto auto auto;
  48. grid-gap: 0.5em;
  49. padding-left: 24px;
  50. padding-right: 24px;
  51. }
  52. .event {
  53. background-color: #1e1e1e;
  54. border-radius: 4px;
  55. box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  56. }
  57. .event_info {
  58. margin: 0.5rem 1rem;
  59. }
  60. .event_info svg {
  61. height: 12px;
  62. width: 12px;
  63. fill: white;
  64. margin-right: 0.2em;
  65. }
  66. .title {
  67. font-size: 14px;
  68. }
  69. .place_name,
  70. .flex {
  71. font-size: 12px;
  72. }
  73. .center {
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. }
  78. .flex,
  79. .location {
  80. display: flex;
  81. align-items: center;
  82. }
  83. .place_name {
  84. color: #ff6e40;
  85. }
  86. .flyer {
  87. width: 100%;
  88. object-fit: cover;
  89. max-height: 30mm;
  90. border-radius: 4px 4px 0 0;
  91. }
  92. footer {
  93. color: #0d1117;
  94. width: 100%;
  95. padding: 1rem;
  96. display: grid;
  97. grid-template-columns: 66% 33%;
  98. padding-left: 24px;
  99. padding-right: 24px;
  100. }
  101. .contacts {
  102. padding-left: 24px;
  103. }
  104. .contacts span {
  105. padding-right: 1rem;
  106. }
  107. .contacts svg {
  108. width: 1rem;
  109. fill:#0d1117;
  110. }
  111. .published {
  112. text-align: right;
  113. padding-right: 24px;
  114. }