styles.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. body {
  2. color: #86a5b1;
  3. background-color: #2f3241;
  4. font-family: Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  5. margin: 0;
  6. display: flex;
  7. flex-direction: column;
  8. }
  9. .container {
  10. margin: 15px 30px;
  11. background-color: #2f3241;
  12. flex: 1;
  13. display: flex;
  14. flex-direction: column;
  15. }
  16. .svg-stroke {
  17. stroke: #9feaf9;
  18. }
  19. .svg-fill {
  20. fill: #9feaf9;
  21. }
  22. .vertical-middle {
  23. vertical-align: middle !important;
  24. }
  25. h2, h4, p {
  26. text-align: center;
  27. }
  28. h4 {
  29. font-weight: normal;
  30. margin: 0;
  31. line-height: 3;
  32. }
  33. .hero-icons {
  34. transform-origin: 50% 50%;
  35. }
  36. hero-icon.loop-3 {
  37. transform: translate(79px, 21px);
  38. opacity: 1;
  39. }
  40. .hero-icon {
  41. fill: #c2f5ff;
  42. opacity: 1;
  43. transform-origin: 50% 50%;
  44. }
  45. .hero-app {
  46. fill: #71abb7;
  47. transform-origin: 50% 50%;
  48. }
  49. a {
  50. color: #86a5b1;
  51. text-decoration: none;
  52. transition: all 0.2s;
  53. }
  54. a:hover {
  55. color: #c2f5ff;
  56. text-decoration: none;
  57. }
  58. pre, code, .code {
  59. font-family: "Menlo", "Lucida Console", monospace;
  60. color: #c2f5ff;
  61. }
  62. pre {
  63. background-color: #26282E;
  64. white-space: pre-wrap;
  65. line-height: 2.5;
  66. overflow: auto;
  67. margin: 0 auto;
  68. display: inline-block;
  69. padding: 6px 15px;
  70. text-align: center;
  71. border-radius: 3px;
  72. }
  73. pre.with-prompt:before {
  74. content: "$ ";
  75. opacity: 0.7;
  76. }
  77. code {
  78. padding: 1px 4px;
  79. font-size: 14px;
  80. text-align: center;
  81. }
  82. .versions {
  83. list-style: none;
  84. margin: 0 auto;
  85. padding: 0;
  86. float: none;
  87. clear: both;
  88. overflow: hidden;
  89. }
  90. .versions li {
  91. display: block;
  92. float: left;
  93. border-right: 1px solid rgba(194, 245, 255, 0.4);
  94. padding: 0 20px;
  95. font-size: 13px;
  96. opacity: 0.8;
  97. }
  98. .versions li:last-child {
  99. border: none;
  100. }
  101. nav {
  102. margin: 40px 0 0 0;
  103. }
  104. .linkcol {
  105. width: 19%;
  106. display: inline-block;
  107. text-align: center;
  108. }
  109. .hero-octicon {
  110. display: block;
  111. width: 80px;
  112. height: 80px;
  113. margin: 0;
  114. padding: 0;
  115. font-size: 42px !important;
  116. color: #9feaf9;
  117. text-align: center;
  118. background-color: rgba(194, 245, 255, 0.1);
  119. border-radius: 50%;
  120. }
  121. .hero-octicon svg {
  122. display: block;
  123. padding-top: 20px;
  124. height: 42px;
  125. width: 42px;
  126. margin: 0 auto;
  127. }
  128. .octicon-gist:before { padding-left: 10px; }
  129. .octicon-gear:before { padding-left: 5px; }
  130. .octicon-star:before { padding-left: 6px; }
  131. .octicon-gift:before { padding-left: 2px; }