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.

134 lines
2.3 KiB

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. .error {
  40. color: rgb(208, 208, 208);
  41. }
  42. .big-title {
  43. font-family: Comfortaa;
  44. font-weight: bold;
  45. font-size: 60px;
  46. }
  47. .m-title {
  48. font-family: Comfortaa;
  49. font-weight: normal;
  50. font-size: 150%;
  51. }
  52. .nav-sep {
  53. position: relative;
  54. left: 10px;
  55. top: 6px;
  56. padding-left: 20px;
  57. border-left: 2px solid #232323;
  58. height: 30px;
  59. }
  60. .nav-item {
  61. padding: 5px;
  62. font-size: 20px;
  63. }
  64. .nav-item a {
  65. color: #232323;
  66. text-decoration: none;
  67. }
  68. .nav-item a:hover {
  69. color: rgb(250, 152, 33);
  70. text-decoration: none;
  71. }
  72. .home-content {
  73. padding: 20px;
  74. max-height: 40px;
  75. }
  76. .side-img {
  77. display: block;
  78. position: relative;
  79. width: 50%;
  80. height: 100%;
  81. max-height: 500px;
  82. max-width: 500px;
  83. }
  84. .side-txt {
  85. display: block;
  86. position: relative;
  87. width: 50%;
  88. max-width: 500px;
  89. }
  90. .text-title {
  91. background-color: rgb(208, 208, 208);
  92. border-radius: 20px 20px 0px 0px;
  93. }
  94. .text-content {
  95. background-color: rgb(242, 242, 242);
  96. border-radius: 0px 0px 20px 20px;
  97. }
  98. .main {
  99. position: relative;
  100. top: 20px;
  101. }
  102. body {
  103. background-color: #232323;
  104. }
  105. @media (max-width: 767px) {
  106. .big-title {
  107. font-size: 30px;
  108. }
  109. .side-img {
  110. display: none;
  111. }
  112. #navigation {
  113. position: absolute;
  114. top: 50px;
  115. left: 50%;
  116. transform: translate(-50%, 0%);
  117. width: 400px
  118. }
  119. .nav-item {
  120. font-size: 19px;
  121. }
  122. #header-bar {
  123. height: 100px;
  124. }
  125. #header-title {
  126. left: 0px;
  127. width: 20%;
  128. }
  129. #logo {
  130. position: absolute;
  131. left: 50%;
  132. transform: translate(-50%, 0%);
  133. height: 60px;
  134. }
  135. }