not really known
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.

128 lines
2.2 KiB

  1. #main-toolbar #activity-button {
  2. background-image: url(../activity/activity-icon.svg);
  3. }
  4. ul {
  5. padding: 0;
  6. margin: 0;
  7. }
  8. #stopwatch-app {
  9. text-align: center;
  10. margin: 0 55px;
  11. }
  12. #stopwatch-list {
  13. text-align: left;
  14. margin-top: 11px;
  15. margin-bottom: 11px;
  16. }
  17. #stopwatch-list li {
  18. position: relative;
  19. padding-bottom: 128px;
  20. border-bottom: 1px solid black;
  21. }
  22. #stopwatch-list li p {
  23. line-height: 1.2;
  24. }
  25. .counter, .marks {
  26. display: inline-block;
  27. transform: translateY(35%);
  28. }
  29. .marks {
  30. font-size: 30px;
  31. }
  32. .counter {
  33. margin-left: 22px;
  34. font-weight: bold;
  35. font-size: 30px;
  36. }
  37. .buttons-group {
  38. display: inline-block;
  39. transform: translateY(15%);
  40. }
  41. .buttons-group button {
  42. border-radius: 0;
  43. margin-left: 0;
  44. margin-right: 0;
  45. }
  46. .buttons-group button:first-child {
  47. border-radius: 22px 0 0 22px;
  48. margin-right: 0;
  49. }
  50. .buttons-group button:last-child {
  51. border-radius: 0 22px 22px 0;
  52. margin-left: 0;
  53. }
  54. button.remove {
  55. position: absolute;
  56. top: 10%;
  57. right: 0;
  58. width: 84px;
  59. height: 84px;
  60. background-color: transparent;
  61. background-position: center;
  62. background-size: 44px 44px;
  63. background-repeat: no-repeat;
  64. background-image: url(../icons/list-remove.svg);
  65. border: 0;
  66. border-radius: 0;
  67. }
  68. #add-stopwatch {
  69. width: 168px;
  70. height: 84px;
  71. background-position: center;
  72. background-size: 22px 22px;
  73. background-repeat: no-repeat;
  74. background-image: url(../icons/list-add.svg);
  75. }
  76. /* Only for stopwatch */
  77. .buttons-group button {
  78. margin-top: 5.5px;
  79. height: 66px;
  80. width: 66px;
  81. padding: 0;
  82. background-position: center;
  83. background-size: 44px 44px;
  84. background-repeat: no-repeat;
  85. }
  86. .buttons-group button:first-child {
  87. padding-left: 11px;
  88. }
  89. .buttons-group button:last-child {
  90. padding-right: 11px;
  91. }
  92. .buttons-group button.start {
  93. background-image: url(../icons/media-playback-start.svg);
  94. }
  95. .buttons-group button.stop {
  96. background-image: url(../icons/media-playback-pause.svg);
  97. }
  98. .buttons-group button.reset-button {
  99. background-image: url(../icons/media-playback-reset.svg);
  100. }
  101. .buttons-group button.mark-button {
  102. background-image: url(../icons/edit-mark.svg);
  103. }
  104. .buttons-group button.clear-marks-button {
  105. background-image: url(../icons/edit-clear.svg);
  106. }