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.

262 lines
3.8 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-header {
  132. background-color: rgb(208, 208, 208);
  133. }
  134. .card-body {
  135. background-color: rgb(242, 242, 242);
  136. }
  137. .rounder {
  138. border-radius: 20px !important;
  139. }
  140. .main {
  141. position: relative;
  142. top: 10px;
  143. }
  144. .footer {
  145. background-color: rgb(208, 208, 208);
  146. position: absolute;
  147. height: 70px;
  148. width: 100%;
  149. bottom: 0px;
  150. }
  151. .footer-text {
  152. position: relative;
  153. top: 15px;
  154. left: 70px;
  155. }
  156. .plink {
  157. color: rgb(250, 152, 33);
  158. }
  159. body {
  160. background-color: #232323;
  161. }
  162. @media (max-width: 767px) {
  163. .big-title {
  164. font-size: 30px;
  165. }
  166. .side-img {
  167. display: none;
  168. }
  169. .side-txt {
  170. position: absolute;
  171. top: 10px;
  172. left: 50%;
  173. transform: translate(-50%, 0%);
  174. width: 100%;
  175. }
  176. #navigation {
  177. position: absolute;
  178. top: 50px;
  179. left: 50%;
  180. transform: translate(-50%, 0%);
  181. width: 400px
  182. }
  183. .nav-item {
  184. font-size: 19px;
  185. }
  186. #header-bar {
  187. height: 100px;
  188. }
  189. #header-title {
  190. left: 0px;
  191. width: 20%;
  192. }
  193. #logo {
  194. position: absolute;
  195. left: 50%;
  196. transform: translate(-50%, 0%);
  197. height: 60px;
  198. }
  199. .card {
  200. align-self: center;
  201. width: 80%;
  202. }
  203. .carousel-img {
  204. width: 100%;
  205. min-height: 200px;
  206. display: inline-block;
  207. top: 10px;
  208. position: relative;
  209. }
  210. }
  211. .containerCustom {
  212. width: 100%;
  213. padding-right: 0px;
  214. padding-left: 0px;
  215. margin-right: 0px;
  216. margin-left: 0px;
  217. }