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.

72 lines
1.5 KiB

5 years ago
  1. /* EXERCISES LINK */
  2. .exercises_links{
  3. display: flex;
  4. flex-wrap: wrap;
  5. margin-bottom: 30px;
  6. position: absolute;
  7. top: -160px;
  8. }
  9. .exercises_links > li.gbc-title > a{
  10. border: solid 2px #F2932E;
  11. border-bottom: solid 5px #F2932E;
  12. }
  13. .exercises_links > li > a{
  14. font-size: 13px;
  15. font-weight: 700;
  16. display: block;
  17. min-width: 50px;
  18. min-height: 40px;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. margin: 5px;
  23. border-bottom: solid 5px #505050;
  24. color: #505050;
  25. padding: 0 15px;
  26. }
  27. .exercises_links > li:not(.gbc-title) > a{
  28. color: transparent;
  29. }
  30. .exercises_links > li.gbc-title > a.no-completada{
  31. color: #989898;
  32. }
  33. .exercises_links > li > a.no-completada{
  34. border-color: #989898 !important;
  35. cursor: default;
  36. }
  37. .exercises_links > li > a:not(.no-completada):hover{
  38. background: #505050;
  39. color: #fff;
  40. }
  41. .exercises_links > li > a{
  42. border-color: #F2932E;
  43. }
  44. .exercises_links > li > a:not(.no-completada):hover{
  45. background: #F2932E;
  46. }
  47. .exercises_links > li:first-child > a{
  48. border: none;
  49. }
  50. /* FIN EXERCISES LINK */