style.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  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: #FF94E4;
  8. $visited-link: #FF47D1;
  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. @media screen and (max-width: $breakpoint-tablet) {
  107. padding-bottom:6em;
  108. }
  109. }
  110. /* h3{
  111. position:absolute;
  112. left:-8em;
  113. margin:0;
  114. font-size:1em;
  115. font-weight: normal;
  116. border:solid 1px red;
  117. padding:0.1em 0.4em 0.1em 0.4em;
  118. }
  119. */
  120. overflow-y: scroll;
  121. list-style-type: none;
  122. background: transparent;
  123. padding: 1em;
  124. display: flex;
  125. flex-wrap: wrap;
  126. max-height: 80%;
  127. li {
  128. flex-wrap: wrap;
  129. margin-bottom: 1em;
  130. .filler {
  131. display: flex;
  132. flex: 1 1 100%;
  133. }
  134. .filler + div{
  135. border: solid 1pt white;
  136. margin:1.3em 0 -0.4em 0;
  137. }
  138. .title-wrapper {
  139. display: flex;
  140. border-top: 1pt solid white;
  141. border-right: 1pt solid white;
  142. border-left: 1pt solid white;
  143. border-bottom: 1pt solid white;
  144. padding: 0.1em;
  145. margin-bottom: -5px;
  146. z-index: 32;
  147. .titolo{
  148. overflow-x: hidden;
  149. }
  150. @media screen and (max-width: $breakpoint-tablet) {
  151. }
  152. .orario {
  153. color: $text-color;
  154. height: 1.2em;
  155. width: 4em;
  156. display: flex;
  157. justify-content: center;
  158. }
  159. h4 {
  160. margin: 0 1em;
  161. a {
  162. text-decoration: none;
  163. }
  164. }
  165. }
  166. }
  167. .descrizione-talk {
  168. display: none;
  169. flex: 1 1 100%;
  170. overflow-y: hidden;
  171. div{
  172. max-height:30em;
  173. overflow-y: scroll;
  174. padding: 1em 3em;
  175. }
  176. /*@media screen and (min-width: $breakpoint-normal-screen) {
  177. max-width: 75%;
  178. }*/
  179. hyphens: auto;
  180. }
  181. }
  182. }
  183. #raggiungerci {
  184. background-color: $BG-color;
  185. z-index: 100;
  186. margin-top: 1em;
  187. width:100%;
  188. }
  189. }
  190. #left-column {
  191. @media screen and (max-width: $breakpoint-tablet) {
  192. margin: auto;
  193. }
  194. #illustrazione {
  195. margin-top: 1em;
  196. display: flex;
  197. flex-wrap: wrap;
  198. justify-content: center;
  199. pre {
  200. margin:0;
  201. position: fixed;
  202. .rainbow{
  203. .retard-1{
  204. animation-name: rainbow;
  205. animation-duration: 1s;
  206. animation-iteration-count: infinite;
  207. animation-delay: 0.1s;
  208. }
  209. .retard-2{
  210. animation-name: rainbow;
  211. animation-duration: 1s;
  212. animation-iteration-count: infinite;
  213. animation-delay: 0.2s;
  214. }
  215. .retard-3{
  216. animation-name: rainbow;
  217. animation-duration: 1s;
  218. animation-iteration-count: infinite;
  219. animation-delay: 0.3s;
  220. }
  221. .retard-4{
  222. animation-name: rainbow;
  223. animation-duration: 1s;
  224. animation-iteration-count: infinite;
  225. animation-delay: 0.4s;
  226. }
  227. .retard-5{
  228. animation-name: rainbow;
  229. animation-duration: 1s;
  230. animation-iteration-count: infinite;
  231. animation-delay: 0.5s;
  232. }
  233. .retard-6{
  234. animation-name: rainbow;
  235. animation-duration: 1s;
  236. animation-iteration-count: infinite;
  237. animation-delay: 0.6s;
  238. }
  239. .retard-7{
  240. animation-name: rainbow;
  241. animation-duration: 1s;
  242. animation-iteration-count: infinite;
  243. animation-delay: 0.7s;
  244. }
  245. .retard-8{
  246. animation-name: rainbow;
  247. animation-duration: 1s;
  248. animation-iteration-count: infinite;
  249. animation-delay: 0.8s;
  250. }
  251. .retard-9{
  252. animation-name: rainbow;
  253. animation-duration: 1s;
  254. animation-iteration-count: infinite;
  255. animation-delay: 0.9s;
  256. }
  257. .retard-10{
  258. animation-name: rainbow;
  259. animation-duration: 1s;
  260. animation-iteration-count: infinite;
  261. animation-delay: 1s;
  262. }
  263. .retard-11{
  264. animation-name: rainbow;
  265. animation-duration: 1s;
  266. animation-iteration-count: infinite;
  267. animation-delay: 1.1s;
  268. }
  269. .retard-12{
  270. animation-name: rainbow;
  271. animation-duration: 1s;
  272. animation-iteration-count: infinite;
  273. animation-delay: 1.2s;
  274. }
  275. .retard-13{
  276. animation-name: rainbow;
  277. animation-duration: 1s;
  278. animation-iteration-count: infinite;
  279. animation-delay: 1.3s;
  280. }
  281. .retard-14{
  282. animation-name: rainbow;
  283. animation-duration: 1s;
  284. animation-iteration-count: infinite;
  285. animation-delay: 1.4s;
  286. }
  287. .retard-15{
  288. animation-name: rainbow;
  289. animation-duration: 1s;
  290. animation-iteration-count: infinite;
  291. animation-delay: 1.5s;
  292. }
  293. .retard-16{
  294. animation-name: rainbow;
  295. animation-duration: 1s;
  296. animation-iteration-count: infinite;
  297. animation-delay: 1.6s;
  298. }
  299. .retard-17{
  300. animation-name: rainbow;
  301. animation-duration: 1s;
  302. animation-iteration-count: infinite;
  303. animation-delay: 1.7s;
  304. }
  305. .retard-18{
  306. animation-name: rainbow;
  307. animation-duration: 1s;
  308. animation-iteration-count: infinite;
  309. animation-delay: 1.8s;
  310. }
  311. .retard-19{
  312. animation-name: rainbow;
  313. animation-duration: 1s;
  314. animation-iteration-count: infinite;
  315. animation-delay: 1.9s;
  316. }
  317. }
  318. @media screen and (max-width: $breakpoint-phone) {
  319. font-size:0.6em;
  320. font-weight: bold;
  321. }
  322. @media screen and (min-width: $breakpoint-phone) and (max-width: $breakpoint-normal-screen) {
  323. font-size: 0.8em;
  324. }
  325. @media screen and (min-width: $breakpoint-normal-screen) {
  326. font-size: 0.9em;
  327. }
  328. }
  329. .text-wrapper {
  330. position: relative;
  331. .text-offset {
  332. display: flex;
  333. flex-wrap: wrap;
  334. background-color: transparent;
  335. @media screen and (max-width: $breakpoint-phone) {
  336. height:33em;
  337. }
  338. @media screen and (min-width: $breakpoint-phone) and (max-width: $breakpoint-normal-screen) {
  339. height:43em;
  340. }
  341. @media screen and (min-width: $breakpoint-normal-screen) {
  342. height:50em;
  343. }
  344. }
  345. .fake-freccina{
  346. margin-top: 0;
  347. @media screen and (max-width: $breakpoint-tablet) {
  348. left:46.25em;
  349. }
  350. @media screen and (min-width: $breakpoint-tablet) and (max-width: $breakpoint-normal-screen) {
  351. left:46.3em;
  352. }
  353. @media screen and (min-width: $breakpoint-normal-screen) {
  354. left:52.35em;
  355. }
  356. }
  357. #call {
  358. margin:0;
  359. padding:1em 10% 2em 10%;
  360. }
  361. }
  362. }
  363. }
  364. }
  365. }
  366. footer {
  367. display: flex;
  368. justify-content: center;
  369. align-items: center;
  370. text-align: center;
  371. bottom: 0em;
  372. width:100%;
  373. background-color: black;
  374. position: fixed;
  375. left: 0;
  376. padding-top:1em;
  377. p{
  378. animation-name: banner-opacity;
  379. animation-duration: 4s;
  380. animation-fill-mode: forwards;
  381. animation-iteration-count: 1;
  382. }
  383. }
  384. }