Profile.css 977 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .profile-container {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .profile-details {
  9. background-color: var(--accent-color);
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: space-between;
  13. padding: 10px;
  14. }
  15. .profile-detail {
  16. display: flex;
  17. flex-direction: column;
  18. gap: 10px;
  19. justify-content: center;
  20. align-items: center;
  21. text-align: center;
  22. font-size: 40px;
  23. }
  24. .profile-picture {
  25. width: 200px;
  26. height: 200px;
  27. border-radius: 100%;
  28. }
  29. #profile-picture {
  30. width: 200px;
  31. font-size: 1em;
  32. }
  33. .profile-videos {
  34. display: grid;
  35. grid-auto-flow: row;
  36. grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  37. gap: 16px;
  38. padding: 16px;
  39. }
  40. @media only screen and (max-width: 768px) {
  41. .profile-detail {
  42. font-size: 30px;
  43. }
  44. .profile-picture {
  45. width: 100px;
  46. height: 100px;
  47. }
  48. }
  49. @media only screen and (max-width: 500px) {
  50. #profile-video-detail {
  51. display: none;
  52. }
  53. .profile-detail {
  54. font-size: 25px;
  55. }
  56. }