style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. body {
  2. text-align: justify;
  3. }
  4. .ifr_header {
  5. height: 70vh;
  6. background: linear-gradient(#c8e5ff, white);
  7. }
  8. a {
  9. color: #337ab7;
  10. text-decoration: none;
  11. word-wrap: break-word;
  12. }
  13. #ifr__btn__backToTop {
  14. display: none;
  15. position: fixed;
  16. bottom: 20px;
  17. right: 30px;
  18. z-index: 99;
  19. }
  20. .ifr__noBullet ul {
  21. list-style: none;
  22. }
  23. .my-bordered-list ul {
  24. border-left: 1px solid lightgrey;
  25. }
  26. .ifr__toc {
  27. border-right: 1px solid lightgray;
  28. }
  29. .ifr__color__blue {
  30. background-color: #337ab7;
  31. }
  32. .ifr__color__lightBlue {
  33. background-color: rgb(205, 236, 247);
  34. }
  35. .ifr__img {
  36. border-radius: 5px;
  37. transition: 0.3s;
  38. }
  39. .ifr__img:hover {
  40. opacity: 0.9;
  41. cursor: pointer;
  42. }
  43. /* The Modal (background) */
  44. .modal {
  45. display: none; /* Hidden by default */
  46. position: fixed; /* Stay in place */
  47. z-index: 1; /* Sit on top */
  48. padding-top: 100px; /* Location of the box */
  49. left: 0;
  50. top: 0;
  51. width: 100%; /* Full width */
  52. height: 100%; /* Full height */
  53. overflow: auto; /* Enable scroll if needed */
  54. background: black; /* Fallback color */
  55. opacity: 0.9; /* Black w/ opacity */
  56. }
  57. /* Modal Content (image) */
  58. .modal-content {
  59. margin: auto;
  60. display: block;
  61. width: 80%;
  62. /*max-width: 700px;*/
  63. opacity: 1;
  64. }
  65. /* Caption of Modal Image */
  66. #caption {
  67. margin: auto;
  68. display: block;
  69. width: 80%;
  70. max-width: 700px;
  71. text-align: center;
  72. color: #ccc;
  73. padding: 10px 0;
  74. height: 150px;
  75. }
  76. /* Add Animation */
  77. .modal-content,
  78. #caption {
  79. -webkit-animation-name: zoom;
  80. -webkit-animation-duration: 0.6s;
  81. animation-name: zoom;
  82. animation-duration: 0.6s;
  83. }
  84. @-webkit-keyframes zoom {
  85. from {
  86. -webkit-transform: scale(0);
  87. }
  88. to {
  89. -webkit-transform: scale(1);
  90. }
  91. }
  92. @keyframes zoom {
  93. from {
  94. transform: scale(0);
  95. }
  96. to {
  97. transform: scale(1);
  98. }
  99. }
  100. /* The Close Button */
  101. .close {
  102. position: absolute;
  103. top: 15px;
  104. right: 35px;
  105. background: transparent;
  106. color: #f1f1f1;
  107. font-size: 40px;
  108. font-weight: bold;
  109. transition: 0.3s;
  110. }
  111. .close:hover,
  112. .close:focus {
  113. color: #bbb;
  114. text-decoration: none;
  115. cursor: pointer;
  116. }
  117. .ifr_tipografia p {
  118. font-family: Arial,sans-serif;
  119. text-align: center;
  120. }
  121. /* 100% Image Width on Smaller Screens */
  122. @media only screen and (max-width: 700px) {
  123. .modal-content {
  124. width: 100%;
  125. }
  126. }