style.scss 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. $breakpoint-phone: 600px;
  2. $breakpoint-tablet: 900px;
  3. $breakpoint-normal-screen: 1200px;
  4. $breakpoint-big-screen: 1800px;
  5. $BG-color: #000001;
  6. $text-color: #37ffad;
  7. $new-link: #ff33cc;
  8. $visited-link: #cc0099;
  9. @-webkit-keyframes rainbow{
  10. 0%{color: orange;}
  11. 10%{color: purple;}
  12. 20%{color: red;}
  13. 40%{color: yellow;}
  14. 60%{color: green;}
  15. 100%{color: blue;}
  16. 100%{color: orange;}
  17. }
  18. @-webkit-keyframes banner-stretch{
  19. 0%{width: 0%;
  20. left:0;}
  21. 15%{width: 100%;}
  22. 75%{width:100%;};
  23. 100%{width:0%;
  24. right:0;};
  25. }
  26. @-webkit-keyframes banner-opacity{
  27. 0%{opacity: 0%;}
  28. 35%{opacity: 100%; visibility: visible;}
  29. 65%{opacity: 80%;}
  30. 100%{opacity:0;display: none;};
  31. }
  32. body {
  33. font-family: monospace;
  34. width: 100%;
  35. background-color: $BG-color;
  36. color: $text-color;
  37. padding: 0;
  38. margin: 0;
  39. a {
  40. color: $new-link;
  41. }
  42. a:visited {
  43. color: $visited-link;
  44. }
  45. .rainbow{
  46. animation: rainbow 18s ease infinite;
  47. /*
  48. .retard-1{
  49. animation-delay: -1s;
  50. }
  51. .retard-2{
  52. animation-delay: 12s;
  53. }
  54. */ }
  55. // FURBY-COLOR
  56. .stellina{
  57. color:blue;
  58. }
  59. .bocca, .onecchie{
  60. color: burlywood;
  61. }
  62. .occhietti,{
  63. color: white;
  64. }
  65. .vello{
  66. color:brown;
  67. }
  68. .setola{
  69. color:lightcoral;
  70. }
  71. .pedibus{
  72. color:chocolate;
  73. }
  74. main {
  75. width: 100%;
  76. height: 98vh;
  77. background: #000001;
  78. display: flex;
  79. overflow: scroll;
  80. @media screen and (max-width: $breakpoint-tablet) {
  81. flex-wrap: wrap;
  82. }
  83. #scrollable-column {
  84. @media screen and (max-width: $breakpoint-tablet) {
  85. flex-wrap: wrap;
  86. }
  87. @media screen and (min-width: $breakpoint-tablet) {
  88. #raggiungerci {
  89. position: absolute;
  90. bottom: 3em;
  91. .descrizione-talk {
  92. padding: 0 !important;
  93. }
  94. }
  95. }
  96. display: flex;
  97. width: 100%;
  98. margin: auto;
  99. #right-column {
  100. width: 100%;
  101. background-color: $BG-color;
  102. z-index: 33;
  103. display: flex;
  104. justify-content: center;
  105. @media screen and (max-width: $breakpoint-tablet) {
  106. margin: auto;
  107. }
  108. #calendario {
  109. height: 100%;
  110. @media screen and (min-width: $breakpoint-tablet) {
  111. position: fixed;
  112. right: 10em;
  113. }
  114. ul {
  115. #overflow-scroll {
  116. overflow-y: hidden;
  117. }
  118. overflow-y: scroll;
  119. max-width: 45em;
  120. list-style-type: none;
  121. background: transparent;
  122. padding: 1em;
  123. display: flex;
  124. flex-wrap: wrap;
  125. max-height: 80%;
  126. li {
  127. flex-wrap: wrap;
  128. margin-bottom: 1em;
  129. .filler {
  130. display: flex;
  131. flex: 1 1 100%;
  132. }
  133. .title-wrapper {
  134. display: flex;
  135. border-top: 1pt solid white;
  136. border-right: 1pt solid white;
  137. border-left: 1pt solid white;
  138. border-bottom: 1pt solid white;
  139. padding: 0.1em;
  140. margin-bottom: -5px;
  141. z-index: 2;
  142. .orario {
  143. color: $text-color;
  144. height: 1.2em;
  145. width: 4em;
  146. display: flex;
  147. justify-content: center;
  148. }
  149. h4 {
  150. height: 1.2em;
  151. margin: 0 1em;
  152. a {
  153. text-decoration: none;
  154. }
  155. }
  156. }
  157. }
  158. .descrizione-talk {
  159. display: none;
  160. flex: 1 1 100%;
  161. padding: 1em 0 2em 2em;
  162. border-top: 1pt solid white;
  163. border-right: 1pt solid white;
  164. border-left: 1pt solid white;
  165. border-bottom: 1pt solid white;
  166. max-width: 75%;
  167. hyphens: auto;
  168. }
  169. .titolo:target+.descrizionedescrizione-talk {
  170. display: flex;
  171. }
  172. }
  173. }
  174. #raggiungerci {
  175. background-color: $BG-color;
  176. z-index: 100;
  177. margin-top: 1em;
  178. }
  179. }
  180. #left-column {
  181. max-width: 45em;
  182. @media screen and (max-width: $breakpoint-tablet) {
  183. margin: auto;
  184. }
  185. #illustrazione {
  186. margin-top: 1em;
  187. display: flex;
  188. flex-wrap: wrap;
  189. .ascii-wrapper {
  190. pre {
  191. margin:0;
  192. position: fixed;
  193. @media screen and (max-width: $breakpoint-tablet) {
  194. font-size:0.5em;
  195. font-weight: bold;
  196. }
  197. @media screen and (min-width: $breakpoint-tablet) and (max-width: $breakpoint-normal-screen) {
  198. font-size: 0.8em;
  199. }
  200. @media screen and (min-width: $breakpoint-normal-screen) {
  201. font-size: 1em;
  202. }
  203. }
  204. }
  205. .text-wrapper {
  206. position: relative;
  207. .text-offset {
  208. display: flex;
  209. flex-wrap: wrap;
  210. background-color: transparent;
  211. @media screen and (max-width: $breakpoint-tablet) {
  212. height:26em;
  213. }
  214. @media screen and (min-width: $breakpoint-tablet) and (max-width: $breakpoint-normal-screen) {
  215. height:37.3em;
  216. }
  217. @media screen and (min-width: $breakpoint-normal-screen) {
  218. height:50em;
  219. }
  220. }
  221. .fake-freccina{
  222. margin-top: 0;
  223. @media screen and (max-width: $breakpoint-tablet) {
  224. left:24.25em;
  225. display:none;
  226. }
  227. @media screen and (min-width: $breakpoint-tablet) and (max-width: $breakpoint-normal-screen) {
  228. left:36.8em;
  229. }
  230. @media screen and (min-width: $breakpoint-normal-screen) {
  231. left:43.15em;
  232. }
  233. }
  234. }
  235. #call {
  236. padding-top: 4em;
  237. margin-bottom: 0;
  238. padding-bottom: 1em;
  239. @media screen and (max-width: $breakpoint-tablet) {
  240. padding:0 10% 0 10%;
  241. }
  242. @media screen and (min-width: $breakpoint-tablet) and (max-width: $breakpoint-normal-screen) {
  243. padding:0 10% 0 10%;
  244. }
  245. @media screen and (min-width: $breakpoint-normal-screen) {
  246. padding:0 10% 0 10%;
  247. }
  248. }
  249. }
  250. }
  251. }
  252. }
  253. footer {
  254. // animation: banner-stretch 3.3s 1s;
  255. animation-direction: normal;
  256. animation-fill-mode: forwards;
  257. justify-content: center;
  258. align-items: center;
  259. height: 3em;
  260. text-align: center;
  261. position: absolute;
  262. bottom: 0;
  263. visibility: hidden;
  264. }
  265. }