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.

239 lines
3.5 KiB

5 years ago
5 years ago
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. #mainCarousel {
  40. height: 500px;
  41. background-color: #232323;
  42. }
  43. .carousel-item {
  44. height: 500px;
  45. overflow: hidden;
  46. vertical-align: middle;
  47. }
  48. .carousel-img {
  49. width: 100%;
  50. min-height: 300px;
  51. display: inline-block;
  52. top: 0%;
  53. left: 0%;
  54. position: absolute;
  55. }
  56. .img-vert {
  57. display: inline-block;
  58. height: 100%;
  59. }
  60. .error {
  61. color: rgb(208, 208, 208);
  62. }
  63. .big-title {
  64. font-family: Comfortaa;
  65. font-weight: bold;
  66. font-size: 60px;
  67. }
  68. .l-title {
  69. font-family: Comfortaa;
  70. font-weight: normal;
  71. font-size: 40px;
  72. }
  73. .m-title {
  74. font-family: Comfortaa;
  75. font-weight: normal;
  76. font-size: 150%;
  77. }
  78. .nav-sep {
  79. position: relative;
  80. left: 10px;
  81. top: 6px;
  82. padding-left: 20px;
  83. border-left: 2px solid #232323;
  84. height: 30px;
  85. }
  86. .nav-item {
  87. padding: 5px;
  88. font-size: 20px;
  89. }
  90. .nav-item a {
  91. color: #232323;
  92. text-decoration: none;
  93. }
  94. .nav-item a:hover {
  95. color: rgb(250, 152, 33);
  96. text-decoration: none;
  97. }
  98. .home-content {
  99. padding: 20px;
  100. width: 100%;
  101. max-height: 40px;
  102. }
  103. .side-img {
  104. display: block;
  105. position: relative;
  106. width: 50%;
  107. height: 100%;
  108. max-height: 400px;
  109. max-width: 400px;
  110. }
  111. .side-txt {
  112. display: block;
  113. position: relative;
  114. width: 50%;
  115. }
  116. .text-title {
  117. background-color: rgb(208, 208, 208);
  118. border-radius: 20px 20px 0px 0px;
  119. }
  120. .text-content {
  121. background-color: rgb(242, 242, 242);
  122. border-radius: 0px 0px 20px 20px;
  123. }
  124. .card-deck {
  125. position: relative;
  126. padding-top: 20px;
  127. }
  128. .card {
  129. background-color: rgb(208, 208, 208);
  130. }
  131. .card-body {
  132. background-color: rgb(242, 242, 242);
  133. }
  134. .rounder {
  135. border-radius: 20px !important;
  136. }
  137. .main {
  138. position: relative;
  139. top: 10px;
  140. }
  141. body {
  142. background-color: #232323;
  143. }
  144. @media (max-width: 767px) {
  145. .big-title {
  146. font-size: 30px;
  147. }
  148. .side-img {
  149. display: none;
  150. }
  151. .side-txt {
  152. position: absolute;
  153. top: 10px;
  154. left: 50%;
  155. transform: translate(-50%, 0%);
  156. width: 100%;
  157. }
  158. #navigation {
  159. position: absolute;
  160. top: 50px;
  161. left: 50%;
  162. transform: translate(-50%, 0%);
  163. width: 400px
  164. }
  165. .nav-item {
  166. font-size: 19px;
  167. }
  168. #header-bar {
  169. height: 100px;
  170. }
  171. #header-title {
  172. left: 0px;
  173. width: 20%;
  174. }
  175. #logo {
  176. position: absolute;
  177. left: 50%;
  178. transform: translate(-50%, 0%);
  179. height: 60px;
  180. }
  181. .card {
  182. align-self: center;
  183. width: 80%;
  184. }
  185. .carousel-img {
  186. width: 100%;
  187. min-height: 200px;
  188. display: inline-block;
  189. top: 10px;
  190. position: relative;
  191. }
  192. }
  193. .containerCustom {
  194. width: 100%;
  195. padding-right: 0px;
  196. padding-left: 0px;
  197. margin-right: 0px;
  198. margin-left: 0px;
  199. }