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.

75 lines
1.3 KiB

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. width: 30%;
  23. font-size: 25px;
  24. }
  25. #logo {
  26. height: 60px;
  27. }
  28. #error-code {
  29. font-family: Comfortaa;
  30. font-size: 200px;
  31. color: rgb(208, 208, 208);
  32. }
  33. #navigation {
  34. width: 70%;
  35. padding-right: 20px !important;
  36. }
  37. .error {
  38. color: rgb(208, 208, 208);
  39. }
  40. #dcimg {
  41. width: 300px;
  42. }
  43. .big-title {
  44. font-family: Comfortaa;
  45. font-weight: bold;
  46. font-size: 60px;
  47. text-wrap: avoid;
  48. }
  49. .m-title {
  50. font-family: Comfortaa;
  51. font-weight: normal;
  52. font-size: 150%;
  53. }
  54. .nav-sep {
  55. position: relative;
  56. left: 10px;
  57. top: 6px;
  58. padding-left: 20px;
  59. border-left: 2px solid #232323;
  60. height: 30px;
  61. }
  62. .nav-item {
  63. padding: 5px;
  64. font-size: 20px;
  65. }
  66. .nav-item a {
  67. color: #232323;
  68. text-decoration: none;
  69. }
  70. .nav-item a:hover {
  71. color: rgb(250, 152, 33);
  72. text-decoration: none;
  73. }
  74. body {
  75. background-color: #232323;
  76. }