Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
2.9 KiB

5 years ago
  1. /* HOLON MOBILE STYLES START*/
  2. @media (min-width: 728px){
  3. .navigation-container.mobile {
  4. display: none;
  5. }
  6. .navigation-container:not(.mobile) {
  7. display: block;
  8. }
  9. }
  10. @media (max-width: 727px){
  11. .exercises_links{
  12. display:none;
  13. }
  14. .exercises_links_mobile{
  15. display: flex;
  16. flex-wrap: wrap;
  17. margin-bottom: 30px;
  18. }
  19. .exercises_links_mobile > li.gbc-title > a{
  20. /*! border: solid 2px #F2932E; */
  21. border-bottom: solid 10px #e85000;
  22. /*! border-radius: 5px; */
  23. }
  24. .exercises_links_mobile > li > a{
  25. font-size: 13px;
  26. font-weight: 700;
  27. display: block;
  28. min-width: 9px;
  29. min-height: 30px;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. margin: 5px 2px;
  34. border-bottom: solid 10px #505050;
  35. color: #505050;
  36. padding: 0 5px;
  37. font-family: 'FGrotesk','Open Sans';
  38. }
  39. .exercises_links_mobile > li:not(.gbc-title) > a{
  40. /**color: transparent;**/
  41. }
  42. .exercises_links_mobile > li.gbc-title > a.no-completada{
  43. color: #989898;
  44. }
  45. .exercises_links_mobile > li.gbc-title > a.actual{
  46. color: #e85000;
  47. border-color: #e85000;
  48. }
  49. .exercises_links_mobile > li:not(.gbc-title) > a.actual{
  50. color: green;
  51. border-color: green;
  52. }
  53. .exercises_links_mobile > li > a.no-completada{
  54. border-color: #989898 !important;
  55. cursor: default;
  56. }
  57. .exercises_links_mobile > li > a{
  58. border-color: #e85000;
  59. }
  60. .exercises_links_mobile > li > a.completada):hover{
  61. background: #e85000;
  62. }
  63. .exercises_links_mobile > li > a.actual):hover{
  64. background: #e85000;
  65. border-color: #e85000;
  66. }
  67. .exercises_links_mobile > li:first-child > a{
  68. border: none;
  69. }
  70. .navigation-container:not(.mobile) {
  71. display: none;
  72. }
  73. .navigation-container.mobile {
  74. display: block;
  75. }
  76. /* Dropdown Content (Hidden by Default) */
  77. .dropdown-content {
  78. display: none;
  79. position: absolute;
  80. background-color: #f1f1f1;
  81. min-width: 300px;
  82. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  83. z-index: 1;
  84. }
  85. /* Links inside the dropdown */
  86. .dropdown-content a {
  87. color: black;
  88. padding: 12px 16px;
  89. text-decoration: none;
  90. display: block;
  91. font-family: 'FGrotesk','Open Sans';
  92. }
  93. /* Change color of dropdown links on hover */
  94. .dropdown-content a:hover {background-color: #ffffff;}
  95. /* Show the dropdown menu on hover */
  96. .dropdown:hover .dropdown-content {display: block;}
  97. /* Change the background color of the dropdown button when the dropdown content is shown */
  98. .dropdown:hover .dropbtn {background-color: #e85000;}
  99. .dropdown:hover .dropbtn {color: #ffffff !important;}
  100. }
  101. /* HOLON MOBILE STYLES END */