new_issue.less 795 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // SPDX-License-Identifier: AGPL-3.0-or-later
  2. .stats_endpoint {
  3. .github-issue-button {
  4. display: block;
  5. padding: 8px 16px;
  6. font-family: sans-serif;
  7. font-size: 16px;
  8. color: white;
  9. background-color: #238636;
  10. border: #2ea043;
  11. border-radius: 10px !important;
  12. box-shadow: rgba(0, 0, 0, 0) 0 0 0 0;
  13. }
  14. .github-issue-button:hover {
  15. background-color: #2ea043;
  16. }
  17. .issue-hide {
  18. display: none;
  19. }
  20. input[type=checked] {
  21. position: absolute;
  22. }
  23. label {
  24. margin: 1rem 1rem 1rem 0;
  25. }
  26. .step_content {
  27. margin: 1rem 1rem 1rem 2rem;
  28. }
  29. .step1,
  30. .step2 {
  31. visibility: hidden;
  32. }
  33. .step1_delay {
  34. transition: visibility 0s linear 4s;
  35. }
  36. #step1:checked ~ .step1,
  37. #step2:checked ~ .step2 {
  38. visibility: visible;
  39. }
  40. }