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.

251 lines
3.9 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. :root {
  2. --primary:rgba(16,116,231,1);
  3. --secondary:rgba(46,188,79,1);
  4. --dark:rgba(36,41,46,1);
  5. --dark-2:rgba(43,49,55,1);
  6. --white:rgba(255,255,255,1);
  7. }
  8. body {
  9. font-size: 18px;
  10. }
  11. /* Bootstrap overides
  12. ----------------------------------------------- */
  13. .bg-dark {
  14. background-color: var(--dark) !important;
  15. }
  16. .bg-dark-2 {
  17. background-color: var(--dark-2);
  18. }
  19. .btn-primary {
  20. background-color: var(--primary);
  21. border-color: var(--primary);
  22. }
  23. .btn-secondary {
  24. background-color: var(--dark-2);
  25. border-color: var(--dark-2);
  26. }
  27. .navbar-dark .navbar-nav .nav-link {
  28. color: var(--white);
  29. }
  30. .main {
  31. background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-2) 420px, var(--white) 420px);
  32. }
  33. @media screen and (min-width: 768px) {
  34. .main {
  35. background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-2) 360px, var(--white) 360px);
  36. }
  37. }
  38. @media screen and (min-width: 992px) {
  39. .main {
  40. background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-2) 420px, var(--white) 420px);
  41. }
  42. .home-page .main::before {
  43. display: block;
  44. content: '';
  45. position: absolute;
  46. right: 0;
  47. height: 90vh;
  48. width: 50vw;
  49. background-image: url(./img/home-image.png);
  50. background-repeat: no-repeat;
  51. }
  52. }
  53. #header-bar {
  54. height: 10%;
  55. width: 100%;
  56. background-color: rgb(208, 208, 208);
  57. }
  58. #header-title {
  59. font-size: 25px;
  60. }
  61. #logo {
  62. height: 60px;
  63. }
  64. #error-code {
  65. font-family: Comfortaa;
  66. font-size: 200px;
  67. color: rgb(208, 208, 208);
  68. }
  69. #navigation {
  70. position: absolute;
  71. right: 20px;
  72. }
  73. #dcimg {
  74. width: 300px;
  75. }
  76. .img-vert {
  77. display: inline-block;
  78. height: 100%;
  79. }
  80. .error {
  81. color: rgb(208, 208, 208);
  82. }
  83. .big-title {
  84. font-family: Comfortaa;
  85. font-weight: bold;
  86. font-size: 60px;
  87. }
  88. .l-title {
  89. font-family: Comfortaa;
  90. font-weight: normal;
  91. font-size: 40px;
  92. }
  93. .m-title {
  94. font-family: Comfortaa;
  95. font-weight: normal;
  96. font-size: 150%;
  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. .footer {
  141. background-color: rgb(208, 208, 208);
  142. position: absolute;
  143. height: 70px;
  144. width: 100%;
  145. bottom: 0px;
  146. }
  147. .footer-text {
  148. position: relative;
  149. top: 15px;
  150. left: 70px;
  151. }
  152. .plink {
  153. color: rgb(250, 152, 33);
  154. }
  155. @media (max-width: 767px) {
  156. .big-title {
  157. font-size: 30px;
  158. }
  159. .side-img {
  160. display: none;
  161. }
  162. .side-txt {
  163. position: absolute;
  164. top: 10px;
  165. left: 50%;
  166. transform: translate(-50%, 0%);
  167. width: 100%;
  168. }
  169. #navigation {
  170. position: absolute;
  171. top: 50px;
  172. left: 50%;
  173. transform: translate(-50%, 0%);
  174. width: 400px
  175. }
  176. .nav-item {
  177. font-size: 19px;
  178. }
  179. #header-bar {
  180. height: 100px;
  181. }
  182. #header-title {
  183. left: 0px;
  184. width: 20%;
  185. }
  186. #logo {
  187. position: absolute;
  188. left: 50%;
  189. transform: translate(-50%, 0%);
  190. height: 60px;
  191. }
  192. .card {
  193. align-self: center;
  194. width: 80%;
  195. }
  196. }
  197. .containerCustom {
  198. width: 100%;
  199. padding-right: 0px;
  200. padding-left: 0px;
  201. margin-right: 0px;
  202. margin-left: 0px;
  203. }