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.

124 lines
2.5 KiB

5 years ago
  1. /* ACTIONS */
  2. .actions ul {
  3. display: flex;
  4. justify-content: space-between;
  5. position: fixed;
  6. bottom: 49px;
  7. right: 58px;
  8. }
  9. .actions li a {
  10. border: none;
  11. display: inline-flex;
  12. align-items: center;
  13. cursor: pointer;
  14. font-size: 15px;
  15. background: #333;
  16. position: fixed;
  17. bottom: 70px;
  18. height: auto;
  19. width: auto;
  20. color: #fff;
  21. font-size: 1.5rem;
  22. line-height: 1.5rem;
  23. border: none;
  24. padding: 10px 20px;
  25. font-weight: 500;
  26. border-radius: 0;
  27. margin: 0;
  28. }
  29. .actions li a[href="#previous"]{
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. left: 232px;
  34. width: 136px;
  35. }
  36. .actions li a[href="#next"]{
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. left: 370px;
  41. width: 110px;
  42. }
  43. .actions li a[href="#finish"]{
  44. display: none;
  45. }
  46. .actions li a:before {
  47. /* content: "\f2ee";
  48. font-family: Material-Design-Iconic-Font;
  49. position: absolute;
  50. top: 50%;
  51. transform: translateY(-50%);
  52. right: 32px; */
  53. }
  54. .actions li a:hover {
  55. background: #4d4d4d;
  56. }
  57. .actions li:first-child a {
  58. /* background: none;
  59. border: 1px solid #333;
  60. padding-left: 50px;
  61. color: #333; */
  62. }
  63. .actions li:first-child a:before {
  64. /* content: "\f2ea";
  65. right: 77px; */
  66. }
  67. .actions li:first-child a:hover {
  68. /* background: #4d4d4d;
  69. border-color: transparent;
  70. color: #fff; */
  71. }
  72. .actions li:last-child a {
  73. /* padding-left: 28px; */
  74. }
  75. .actions li:last-child a:before {
  76. /* right: 27px; */
  77. }
  78. .actions li[aria-disabled="true"] a {
  79. opacity: 0;
  80. transition: all 1s;
  81. }
  82. /* FIN ACTIONS */