styles.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. * {
  2. -webkit-box-sizing: border-box;
  3. box-sizing: border-box;
  4. -moz-osx-font-smoothing: grayscale;
  5. text-rendering: optimizeLegibility;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-font-smoothing: antialiased;
  8. font-smoothing: antialiased;
  9. font-smooth: never;
  10. -moz-font-smooth: never;
  11. box-sizing: border-box;
  12. }
  13. @font-face {
  14. font-family: 'Helvetica';
  15. src: url("fonts/HelveticaLTStd-Roman.otf") format("opentype");
  16. }
  17. html {
  18. height: 100%;
  19. }
  20. body {
  21. margin: 0;
  22. padding: 0;
  23. background: darkgreen;
  24. /* overflow: hidden; */
  25. }
  26. .title{
  27. font-size: 40px;
  28. text-align: center;
  29. color:darkgreen;
  30. padding-bottom: 24px;
  31. }
  32. .text{
  33. position: relative;
  34. width: 70%;
  35. height: 100%;
  36. top: 30%;
  37. left:50%;
  38. transform: translate(-50%,0%);
  39. margin-top:9%;
  40. background: white;
  41. font-size: 24px;
  42. text-align: justify;
  43. padding: 8%;
  44. line-height: 1.25cm;
  45. border-radius: 8px;
  46. padding-top: 5%;
  47. }
  48. .language{
  49. display: block;
  50. }
  51. .button{
  52. color:white;
  53. position: center;
  54. }
  55. /*# sourceMappingURL=styles.css.map */
  56. .languageSwitch{
  57. position: fixed;
  58. right:5%;
  59. top:5%;
  60. /* font-size: 40px; */
  61. text-align: right;
  62. }
  63. #logotsz{
  64. position: fixed;
  65. left:3%;
  66. top:2%;
  67. width:9%
  68. }
  69. button {
  70. /* font-family: Arial,Helvetica,sans-serif; */
  71. width: inherit;
  72. font-size: 2.1vw;
  73. background: white;
  74. color: darkgreen;
  75. border-radius: 8px;
  76. cursor: pointer;
  77. }
  78. #worldmap{
  79. float:right;
  80. width:50%;
  81. padding: 2%;
  82. /* height:; */
  83. }
  84. .video{
  85. /* float:right; */
  86. width:50%;
  87. padding: 5%;
  88. /* height:; */
  89. }
  90. #closing{
  91. background: white;
  92. position: relative;
  93. /* font-size: 24px; */
  94. bottom: 5%;
  95. height: 25%;
  96. padding-left: 2%;
  97. }
  98. #erasmus{
  99. background: inherit;
  100. float: right;
  101. width: 30%;
  102. margin-right: 2%;
  103. margin-top:1%;
  104. }
  105. #riferimenti{
  106. background: inherit;
  107. /* float: right; */
  108. width: 38%;
  109. }
  110. #fujakka{
  111. background: inherit;
  112. /* float: left; */
  113. width: 10.5%;
  114. }
  115. /* Style all font awesome icons */
  116. .fa {
  117. /* padding: 10px; */
  118. /* width: 9%;
  119. height: 9%; */
  120. /* width: 50px; */
  121. /* padding: 20px;
  122. font-size: 30px;
  123. width: 30px;
  124. text-align: center;
  125. text-decoration: none; */
  126. /* padding: 20px; */
  127. border-radius: 8%;
  128. /* font-size: 240px; */
  129. width: 2vw;
  130. height: 2vw;
  131. text-decoration: none;
  132. text-align: center;
  133. margin: 5px 80px;
  134. right:1%;
  135. border: 1vw;
  136. }
  137. /* Add a hover effect if you want */
  138. .fa:hover {
  139. opacity: 0.7;
  140. }
  141. /* Set a specific color for each brand */
  142. /* Facebook */
  143. .fa-facebook {
  144. background: #3B5998;
  145. color: white;
  146. position: fixed;
  147. }
  148. /* Twitter */
  149. .fa-instagram {
  150. position: fixed;
  151. font-size: 35%;
  152. background: #c04eb1;
  153. color: black;
  154. }
  155. .sidepanel {
  156. width: 0;
  157. position: fixed;
  158. z-index: 1;
  159. height: 37vh;
  160. top: 0;
  161. left: 0;
  162. background-color: #111;
  163. overflow-x: hidden;
  164. transition: 0.5s;
  165. padding-top: 60px;
  166. }
  167. .sidepanel a {
  168. padding: 8px 8px 8px 32px;
  169. text-decoration: none;
  170. font-size: 25px;
  171. color: #818181;
  172. display: block;
  173. transition: 0.3s;
  174. }
  175. .sidepanel a:hover {
  176. color: #f1f1f1;
  177. }
  178. .sidepanel .closebtn {
  179. position: absolute;
  180. top: 0;
  181. right: 25px;
  182. font-size: 36px;
  183. }
  184. .openbtn {
  185. cursor: pointer;
  186. }
  187. #boosting{
  188. background: inherit;
  189. width: 13%;
  190. margin-left: 3%;
  191. }
  192. .container {
  193. display: flex;
  194. }
  195. .description{
  196. margin-left: 4%;
  197. }
  198. .videos{
  199. margin-top: 1%;
  200. }