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.

48 lines
726 B

  1. #content {
  2. top: 120px;
  3. position: absolute;
  4. left: 50%;
  5. transform: translate(-50%, 0%);
  6. }
  7. #content-title {
  8. position: relative;
  9. top: 20%;
  10. height: 80px;
  11. background-color: rgb(208, 208, 208);
  12. border-radius: 20px 20px 0px 0px
  13. }
  14. #content-body {
  15. position: relative;
  16. background-color: rgb(242, 242, 242);
  17. border-radius: 0px 0px 20px 20px;
  18. }
  19. .avatar {
  20. border-radius: 10px 10px 10px 10px !important;
  21. top: 10px;
  22. position: relative;
  23. width: 70%;
  24. }
  25. .links {
  26. padding: 10px;
  27. }
  28. .links a {
  29. text-decoration: none;
  30. }
  31. .link-ico {
  32. width: 40px;
  33. }
  34. .plink {
  35. color: rgb(250, 152, 33);
  36. }
  37. @media (max-width: 767px) {
  38. #content-title {
  39. height: 40px;
  40. }
  41. }