style.css 2.2 KB

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