media.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. body {
  2. background-color: #f8f9fa;
  3. }
  4. .ariane {
  5. width: 1140px;
  6. margin-bottom: 10px;
  7. margin-right: auto;
  8. margin-left: auto;
  9. }
  10. .container {
  11. width: 1200px;
  12. margin-top: 30px;
  13. margin-bottom: 50px;
  14. padding: 30px;
  15. background-color: white;
  16. border-radius: 5px;
  17. box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  18. }
  19. h1 {
  20. color: #007bff;
  21. margin-bottom: 30px;
  22. }
  23. .form-group label {
  24. font-weight: bold;
  25. }
  26. .btn-primary {
  27. width: 100%;
  28. margin-top: 20px;
  29. }
  30. .video-container {
  31. border: 1px solid #ddd;
  32. border-radius: 5px;
  33. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  34. background-color: #f9f9f9;
  35. margin-bottom: 10px;
  36. overflow: hidden;
  37. transition: max-height 0.3s ease;
  38. }
  39. .video-content {
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: center;
  43. padding: 15px;
  44. }
  45. .video-details {
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: flex-start; /* Aligne le contenu en haut */
  49. flex-grow: 1;
  50. }
  51. .video-info {
  52. font-size: 0.9em;
  53. color: #666;
  54. width: 100%;
  55. }
  56. .video-title {
  57. font-size: 1.2em;
  58. font-weight: bold;
  59. margin: 5px 0 10px 0;
  60. }
  61. .title-little {
  62. margin: 0 !important;
  63. }
  64. .actions {
  65. display: flex;
  66. flex-direction: row-reverse;
  67. margin-top: -5px;
  68. }
  69. .actions .btn {
  70. margin-left: 5px;
  71. }
  72. .video-preview {
  73. width: 200px;
  74. height: 113px;
  75. object-fit: cover;
  76. margin-right: 10px;
  77. }
  78. /*
  79. * Navbar
  80. */
  81. .navbar-brand {
  82. padding-top: .75rem;
  83. padding-bottom: .75rem;
  84. font-size: 1rem;
  85. background-color: rgba(0, 0, 0, .25);
  86. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  87. }
  88. .navbar .navbar-toggler {
  89. top: .25rem;
  90. right: 1rem;
  91. }
  92. .navbar .form-control {
  93. padding: .75rem 1rem;
  94. border-width: 0;
  95. border-radius: 0;
  96. }
  97. .big_topic{
  98. display: none;
  99. }
  100. .little_topic:hover{
  101. background-color: #dbf3fa;
  102. cursor: ns-resize;
  103. }