style.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  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: #E600AC;
  8. $visited-link: #FF4DD2;
  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-opacity{
  19. 0%{opacity: 0;}
  20. 50%{opacity:1;}
  21. 100%{opacity:0;};
  22. }
  23. body {
  24. font-family: monospace;
  25. width: 100%;
  26. background-color: $BG-color;
  27. color: $text-color;
  28. padding: 0;
  29. margin: 0;
  30. .rainbow{
  31. animation-name: rainbow;
  32. animation-duration: 18s;
  33. animation-iteration-count: infinite;
  34. }
  35. a {
  36. color: $new-link;
  37. }
  38. a:visited {
  39. color: $visited-link;
  40. }
  41. // FURBY-COLOR
  42. .stellina{
  43. color:blue;
  44. }
  45. .bocca, .onecchie{
  46. color: burlywood;
  47. }
  48. .occhietti,{
  49. color: white;
  50. }
  51. .vello{
  52. color:brown;
  53. }
  54. .setola{
  55. color:lightcoral;
  56. }
  57. .pedibus{
  58. color:chocolate;
  59. }
  60. main {
  61. width: 100%;
  62. height: 98vh;
  63. background: #000001;
  64. display: flex;
  65. overflow: scroll;
  66. @media screen and (max-width: $breakpoint-tablet) {
  67. flex-wrap: wrap;
  68. }
  69. #scrollable-column {
  70. @media screen and (max-width: $breakpoint-tablet) {
  71. flex-wrap: wrap;
  72. padding-top:2em;
  73. }
  74. @media screen and (min-width: $breakpoint-tablet) {
  75. #raggiungerci {
  76. position: absolute;
  77. bottom: 6em;
  78. padding-top: 0.1em;
  79. }
  80. }
  81. display: flex;
  82. width: 100%;
  83. margin: auto;
  84. #right-column {
  85. width: 100%;
  86. background-color: $BG-color;
  87. z-index: 33;
  88. display: flex;
  89. justify-content: center;
  90. @media screen and (max-width: $breakpoint-tablet) {
  91. display:flex;
  92. justify-content: center;
  93. }
  94. #calendario {
  95. height: 100%;
  96. max-width: 40em;
  97. @media screen and (min-width: $breakpoint-tablet) {
  98. position: fixed;
  99. }
  100. @media screen and (min-width: $breakpoint-normal-screen) {
  101. width:40%;
  102. }
  103. ul {
  104. #overflow-scroll {
  105. overflow-y: hidden ;
  106. }
  107. overflow-y: scroll;
  108. list-style-type: none;
  109. background: transparent;
  110. padding: 1em;
  111. display: flex;
  112. flex-wrap: wrap;
  113. max-height: 80%;
  114. li {
  115. flex-wrap: wrap;
  116. margin-bottom: 1em;
  117. .filler {
  118. display: flex;
  119. flex: 1 1 100%;
  120. }
  121. .filler + div{
  122. border: solid 1pt white;
  123. margin:1.3em 0 -0.4em 0;
  124. }
  125. .title-wrapper {
  126. display: flex;
  127. border-top: 1pt solid white;
  128. border-right: 1pt solid white;
  129. border-left: 1pt solid white;
  130. border-bottom: 1pt solid white;
  131. padding: 0.1em;
  132. margin-bottom: -5px;
  133. z-index: 32;
  134. .titolo{
  135. overflow-x: hidden;
  136. }
  137. @media screen and (max-width: $breakpoint-tablet) {
  138. }
  139. .orario {
  140. color: $text-color;
  141. height: 1.2em;
  142. width: 4em;
  143. display: flex;
  144. justify-content: center;
  145. }
  146. h4 {
  147. margin: 0 1em;
  148. a {
  149. text-decoration: none;
  150. }
  151. }
  152. }
  153. }
  154. .descrizione-talk {
  155. display: none;
  156. flex: 1 1 100%;
  157. overflow-y: hidden;
  158. div{
  159. max-height:30em;
  160. overflow-y: scroll;
  161. padding: 1em 3em;
  162. }
  163. /*@media screen and (min-width: $breakpoint-normal-screen) {
  164. max-width: 75%;
  165. }*/
  166. hyphens: auto;
  167. }
  168. }
  169. }
  170. #raggiungerci {
  171. background-color: $BG-color;
  172. z-index: 100;
  173. margin-top: 1em;
  174. width:100%;
  175. }
  176. }
  177. #left-column {
  178. @media screen and (max-width: $breakpoint-tablet) {
  179. margin: auto;
  180. }
  181. #illustrazione {
  182. margin-top: 1em;
  183. display: flex;
  184. flex-wrap: wrap;
  185. justify-content: center;
  186. pre {
  187. margin:0;
  188. position: fixed;
  189. .rainbow{
  190. .retard-1{
  191. animation-name: rainbow;
  192. animation-duration: 1s;
  193. animation-iteration-count: infinite;
  194. animation-delay: 0.1s;
  195. }
  196. .retard-2{
  197. animation-name: rainbow;
  198. animation-duration: 1s;
  199. animation-iteration-count: infinite;
  200. animation-delay: 0.2s;
  201. }
  202. .retard-3{
  203. animation-name: rainbow;
  204. animation-duration: 1s;
  205. animation-iteration-count: infinite;
  206. animation-delay: 0.3s;
  207. }
  208. .retard-4{
  209. animation-name: rainbow;
  210. animation-duration: 1s;
  211. animation-iteration-count: infinite;
  212. animation-delay: 0.4s;
  213. }
  214. .retard-5{
  215. animation-name: rainbow;
  216. animation-duration: 1s;
  217. animation-iteration-count: infinite;
  218. animation-delay: 0.5s;
  219. }
  220. .retard-6{
  221. animation-name: rainbow;
  222. animation-duration: 1s;
  223. animation-iteration-count: infinite;
  224. animation-delay: 0.6s;
  225. }
  226. .retard-7{
  227. animation-name: rainbow;
  228. animation-duration: 1s;
  229. animation-iteration-count: infinite;
  230. animation-delay: 0.7s;
  231. }
  232. .retard-8{
  233. animation-name: rainbow;
  234. animation-duration: 1s;
  235. animation-iteration-count: infinite;
  236. animation-delay: 0.8s;
  237. }
  238. .retard-9{
  239. animation-name: rainbow;
  240. animation-duration: 1s;
  241. animation-iteration-count: infinite;
  242. animation-delay: 0.9s;
  243. }
  244. .retard-10{
  245. animation-name: rainbow;
  246. animation-duration: 1s;
  247. animation-iteration-count: infinite;
  248. animation-delay: 1s;
  249. }
  250. .retard-11{
  251. animation-name: rainbow;
  252. animation-duration: 1s;
  253. animation-iteration-count: infinite;
  254. animation-delay: 1.1s;
  255. }
  256. .retard-12{
  257. animation-name: rainbow;
  258. animation-duration: 1s;
  259. animation-iteration-count: infinite;
  260. animation-delay: 1.2s;
  261. }
  262. .retard-13{
  263. animation-name: rainbow;
  264. animation-duration: 1s;
  265. animation-iteration-count: infinite;
  266. animation-delay: 1.3s;
  267. }
  268. .retard-14{
  269. animation-name: rainbow;
  270. animation-duration: 1s;
  271. animation-iteration-count: infinite;
  272. animation-delay: 1.4s;
  273. }
  274. .retard-15{
  275. animation-name: rainbow;
  276. animation-duration: 1s;
  277. animation-iteration-count: infinite;
  278. animation-delay: 1.5s;
  279. }
  280. .retard-16{
  281. animation-name: rainbow;
  282. animation-duration: 1s;
  283. animation-iteration-count: infinite;
  284. animation-delay: 1.6s;
  285. }
  286. .retard-17{
  287. animation-name: rainbow;
  288. animation-duration: 1s;
  289. animation-iteration-count: infinite;
  290. animation-delay: 1.7s;
  291. }
  292. .retard-18{
  293. animation-name: rainbow;
  294. animation-duration: 1s;
  295. animation-iteration-count: infinite;
  296. animation-delay: 1.8s;
  297. }
  298. .retard-19{
  299. animation-name: rainbow;
  300. animation-duration: 1s;
  301. animation-iteration-count: infinite;
  302. animation-delay: 1.9s;
  303. }
  304. }
  305. @media screen and (max-width: $breakpoint-phone) {
  306. font-size:0.6em;
  307. font-weight: bold;
  308. }
  309. @media screen and (min-width: $breakpoint-phone) and (max-width: $breakpoint-normal-screen) {
  310. font-size: 0.8em;
  311. }
  312. @media screen and (min-width: $breakpoint-normal-screen) {
  313. font-size: 0.9em;
  314. }
  315. }
  316. .text-wrapper {
  317. position: relative;
  318. .text-offset {
  319. display: flex;
  320. flex-wrap: wrap;
  321. background-color: transparent;
  322. @media screen and (max-width: $breakpoint-phone) {
  323. height:33em;
  324. }
  325. @media screen and (min-width: $breakpoint-phone) and (max-width: $breakpoint-normal-screen) {
  326. height:43em;
  327. }
  328. @media screen and (min-width: $breakpoint-normal-screen) {
  329. height:50em;
  330. }
  331. }
  332. .fake-freccina{
  333. margin-top: 0;
  334. @media screen and (max-width: $breakpoint-tablet) {
  335. left:46.25em;
  336. }
  337. @media screen and (min-width: $breakpoint-tablet) and (max-width: $breakpoint-normal-screen) {
  338. left:46.3em;
  339. }
  340. @media screen and (min-width: $breakpoint-normal-screen) {
  341. left:52.35em;
  342. }
  343. }
  344. #call {
  345. margin:0;
  346. padding:1em 10% 2em 10%;
  347. }
  348. }
  349. }
  350. }
  351. }
  352. }
  353. footer {
  354. display: flex;
  355. justify-content: center;
  356. align-items: center;
  357. text-align: center;
  358. bottom: 0em;
  359. width:100%;
  360. background-color: black;
  361. position: fixed;
  362. left: 0;
  363. padding-top:1em;
  364. p{
  365. animation-name: banner-opacity;
  366. animation-duration: 4s;
  367. animation-fill-mode: forwards;
  368. animation-iteration-count: 1;
  369. }
  370. }
  371. }