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.

100 lines
1.7 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. .text-title {
  55. height: 60px;
  56. background-color: rgb(208, 208, 208);
  57. border-radius: 20px 0px 0px 0px;
  58. }
  59. .text-content {
  60. height: 335px;
  61. background-color: rgb(242, 242, 242);
  62. border-radius: 0px 0px 0px 20px;
  63. }
  64. .nav-sep {
  65. position: relative;
  66. left: 10px;
  67. top: 6px;
  68. padding-left: 20px;
  69. border-left: 2px solid #232323;
  70. height: 30px;
  71. }
  72. .nav-item {
  73. padding: 5px;
  74. font-size: 20px;
  75. }
  76. .nav-item a {
  77. color: #232323;
  78. text-decoration: none;
  79. }
  80. .nav-item a:hover {
  81. color: rgb(250, 152, 33);
  82. text-decoration: none;
  83. }
  84. .side-img {
  85. display: grid;
  86. position: relative;
  87. width: 50%;
  88. border-radius: 0px 20px 20px 0px;
  89. }
  90. .side-txt {
  91. display: grid;
  92. position: relative;
  93. width: 50%;
  94. }
  95. .main {
  96. position: relative;
  97. top: 20px;
  98. }
  99. body {
  100. background-color: #232323;
  101. }