mystyle.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #lauchSearch{
  2. margin:auto;
  3. }
  4. #title {
  5. padding:5% 0;
  6. }
  7. .searchBar {
  8. padding: 5% 0;
  9. }
  10. #logo {
  11. width:100px;
  12. height:auto;
  13. }
  14. .choose_param {
  15. margin-bottom: 2%;
  16. }
  17. .barraDiRicerca {
  18. width:70%;
  19. }
  20. #cooccorrenze {
  21. margin-left: 5px;
  22. }
  23. #cooccorrenze_options {
  24. text-align: center;
  25. margin-top: 2%;
  26. padding: 0% 15%;
  27. }
  28. #add_cc {
  29. border: 1px solid grey;
  30. padding: 5px;
  31. }
  32. #result {
  33. margin:3%;
  34. }
  35. #result .row {
  36. padding: 1%;
  37. }
  38. #result .row:nth-child(even){
  39. background-color: #fff;
  40. }
  41. #result .row:nth-child(odd){
  42. background-color: #efefef;
  43. }
  44. #first_row {
  45. font-weight: bold;
  46. }
  47. .highlight {
  48. color: red;
  49. font-weight: bold;
  50. }
  51. /*Loader*/
  52. .loader {
  53. border: 16px solid #f3f3f3;
  54. border-radius: 50%;
  55. border-top: 16px solid #3498db;
  56. width: 120px;
  57. height: 120px;
  58. -webkit-animation: spin 2s linear infinite; /* Safari */
  59. animation: spin 2s linear infinite;
  60. margin-left: auto;
  61. margin-right: auto;
  62. }
  63. /* Safari */
  64. @-webkit-keyframes spin {
  65. 0% { -webkit-transform: rotate(0deg); }
  66. 100% { -webkit-transform: rotate(360deg); }
  67. }
  68. @keyframes spin {
  69. 0% { transform: rotate(0deg); }
  70. 100% { transform: rotate(360deg); }
  71. }
  72. footer {
  73. margin-top: 150px;
  74. width: 100%;
  75. text-align: center;
  76. margin-bottom: 10px;
  77. }
  78. footer img {
  79. height: 80px;
  80. width: auto;
  81. }
  82. /* The container must be positioned relative: */
  83. .custom-select {
  84. position: relative;
  85. font-family: Arial;
  86. }
  87. .custom-select select {
  88. display: none; /*hide original SELECT element: */
  89. }
  90. .select-selected {
  91. background-color: DodgerBlue;
  92. }
  93. /* Style the arrow inside the select element: */
  94. .select-selected:after {
  95. position: absolute;
  96. content: "";
  97. top: 14px;
  98. right: 10px;
  99. width: 0;
  100. height: 0;
  101. border: 6px solid transparent;
  102. border-color: #fff transparent transparent transparent;
  103. }
  104. /* Point the arrow upwards when the select box is open (active): */
  105. .select-selected.select-arrow-active:after {
  106. border-color: transparent transparent #fff transparent;
  107. top: 7px;
  108. }
  109. /* style the items (options), including the selected item: */
  110. .select-items div,.select-selected {
  111. color: #ffffff;
  112. padding: 8px 16px;
  113. border: 1px solid transparent;
  114. border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  115. cursor: pointer;
  116. }
  117. /* Style items (options): */
  118. .select-items {
  119. position: absolute;
  120. background-color: DodgerBlue;
  121. top: 100%;
  122. left: 0;
  123. right: 0;
  124. z-index: 99;
  125. }
  126. /* Hide the items when the select box is closed: */
  127. .select-hide {
  128. display: none;
  129. }
  130. .select-items div:hover, .same-as-selected {
  131. background-color: rgba(0, 0, 0, 0.1);
  132. }