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.

94 lines
1.6 KiB

3 months ago
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html, body {
  5. height: 100%;
  6. }
  7. body {
  8. font-family: Helvetica, Arial, sans-serif;
  9. background-size: 100%;
  10. margin: 0;
  11. padding: 0;
  12. color: #424242;
  13. }
  14. .container {
  15. overflow: hidden;
  16. display: flex;
  17. height: 100%;
  18. justify-content: center;
  19. flex-direction: column;
  20. align-items: center;
  21. background-color: whitesmoke;
  22. background-image: url("./pattern.png");
  23. }
  24. .hidden {
  25. display: none;
  26. }
  27. .docs {
  28. display: flex;
  29. justify-content: center;
  30. flex-direction: column;
  31. align-items: center;
  32. background-color: white;
  33. border: 1px solid #e3e3e3;
  34. padding: 20px 20px;
  35. width: 60%;
  36. border-radius: 4px;
  37. }
  38. .docs h2 {
  39. margin-top: 0px;
  40. }
  41. code p {
  42. margin: 2px;
  43. }
  44. .pad-left {
  45. padding-left: 20px;
  46. }
  47. .buttons {
  48. margin: 20px;
  49. display: flex;
  50. flex-wrap: wrap;
  51. justify-content: center;
  52. }
  53. .button {
  54. overflow: hidden;
  55. margin: 10px;
  56. padding: 12px 12px;
  57. cursor: pointer;
  58. -webkit-transition: all 200ms ease-in-out;
  59. transition: all 200ms ease-in-out;
  60. text-align: center;
  61. white-space: nowrap;
  62. text-decoration: none;
  63. text-transform: none;
  64. text-transform: capitalize;
  65. border-radius: 4px;
  66. font-size: 13px;
  67. font-weight: 500;
  68. line-height: 1.3;
  69. min-width: 100px;
  70. display: inline-block;
  71. box-shadow: 0 5px 20px rgba(22, 22, 22, 0.15);
  72. color: #5477f5;
  73. background-color: Snow;
  74. border: 1px solid #5477f5;
  75. }
  76. .button:hover {
  77. color: #FFFFFF;
  78. background: linear-gradient(135deg, #73a5ff, #5477f5);
  79. border: 1px solid transparent;
  80. }
  81. .repo {
  82. margin: 10px;
  83. }