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.

45 lines
659 B

  1. #search-bar {
  2. position: relative;
  3. left: 50%;
  4. transform: translate(-50%, 0%);
  5. padding: 10px;
  6. height: 60px;
  7. width: 100%;
  8. background-color: rgb(208, 208, 208);
  9. border-radius: 20px;
  10. }
  11. #search {
  12. padding-left: 20px;
  13. }
  14. .search-title {
  15. position: relative;
  16. padding-top: 5px;
  17. width: 30%;
  18. }
  19. .search-col {
  20. position: relative;
  21. display: block;
  22. }
  23. .search-form {
  24. position: relative;
  25. left: 0px;
  26. width: 100%;
  27. }
  28. @media (max-width: 767px) {
  29. #search-bar {
  30. height: 75px;
  31. width: 70%;
  32. }
  33. .search-title {
  34. width: 25%;
  35. }
  36. .m-title {
  37. font-size: 100%;
  38. }
  39. }