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.

66 lines
1.2 KiB

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