Website for visualizing a persons github network.
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.

198 lines
2.8 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. @font-face {
  2. font-family: Comfortaa;
  3. src: url(./fonts/Comfortaa-Regular.ttf);
  4. font-weight: normal;
  5. }
  6. @font-face {
  7. font-family: Comfortaa;
  8. src: url(./fonts/Comfortaa-Light.ttf);
  9. font-weight: lighter;
  10. }
  11. @font-face {
  12. font-family: Comfortaa;
  13. src: url(./fonts/Comfortaa-Bold.ttf);
  14. font-weight: bold;
  15. }
  16. #header-bar {
  17. height: 10%;
  18. width: 100%;
  19. background-color: rgb(208, 208, 208);
  20. }
  21. #header-title {
  22. font-size: 25px;
  23. }
  24. #logo {
  25. height: 60px;
  26. }
  27. #error-code {
  28. font-family: Comfortaa;
  29. font-size: 200px;
  30. color: rgb(208, 208, 208);
  31. }
  32. #navigation {
  33. position: absolute;
  34. right: 20px;
  35. }
  36. #dcimg {
  37. width: 300px;
  38. }
  39. .error {
  40. color: rgb(208, 208, 208);
  41. }
  42. .big-title {
  43. font-family: Comfortaa;
  44. font-weight: bold;
  45. font-size: 60px;
  46. }
  47. .l-title {
  48. font-family: Comfortaa;
  49. font-weight: normal;
  50. font-size: 40px;
  51. }
  52. .m-title {
  53. font-family: Comfortaa;
  54. font-weight: normal;
  55. font-size: 150%;
  56. }
  57. .nav-sep {
  58. position: relative;
  59. left: 10px;
  60. top: 6px;
  61. padding-left: 20px;
  62. border-left: 2px solid #232323;
  63. height: 30px;
  64. }
  65. .nav-item {
  66. padding: 5px;
  67. font-size: 20px;
  68. }
  69. .nav-item a {
  70. color: #232323;
  71. text-decoration: none;
  72. }
  73. .nav-item a:hover {
  74. color: rgb(250, 152, 33);
  75. text-decoration: none;
  76. }
  77. .home-content {
  78. padding: 20px;
  79. width: 100%;
  80. max-height: 40px;
  81. }
  82. .side-img {
  83. display: block;
  84. position: relative;
  85. width: 50%;
  86. height: 100%;
  87. max-height: 500px;
  88. max-width: 500px;
  89. }
  90. .side-txt {
  91. display: block;
  92. position: relative;
  93. width: 50%;
  94. }
  95. .text-title {
  96. background-color: rgb(208, 208, 208);
  97. border-radius: 20px 20px 0px 0px;
  98. }
  99. .text-content {
  100. background-color: rgb(242, 242, 242);
  101. border-radius: 0px 0px 20px 20px;
  102. }
  103. .card-deck {
  104. position: relative;
  105. padding-top: 20px;
  106. }
  107. .card {
  108. background-color: rgb(255, 255, 255);
  109. }
  110. .card-body {
  111. background-color: rgb(255, 255, 255);
  112. }
  113. .rounder {
  114. border-radius: 20px !important;
  115. }
  116. .main {
  117. position: relative;
  118. top: 20px;
  119. }
  120. body {
  121. background-color: #232323;
  122. }
  123. @media (max-width: 767px) {
  124. .big-title {
  125. font-size: 30px;
  126. }
  127. .side-img {
  128. display: none;
  129. }
  130. .side-txt {
  131. position: absolute;
  132. top: 10px;
  133. left: 50%;
  134. transform: translate(-50%, 0%);
  135. width: 100%;
  136. }
  137. #navigation {
  138. position: absolute;
  139. top: 50px;
  140. left: 50%;
  141. transform: translate(-50%, 0%);
  142. width: 400px
  143. }
  144. .nav-item {
  145. font-size: 19px;
  146. }
  147. #header-bar {
  148. height: 100px;
  149. }
  150. #header-title {
  151. left: 0px;
  152. width: 20%;
  153. }
  154. #logo {
  155. position: absolute;
  156. left: 50%;
  157. transform: translate(-50%, 0%);
  158. height: 60px;
  159. }
  160. .card {
  161. align-self: center;
  162. width: 80%;
  163. }
  164. }