maringetxway commited on
Commit
289d6c3
·
verified ·
1 Parent(s): 2b80da5

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +19 -21
style.css CHANGED
@@ -1,22 +1,20 @@
1
- body {
2
- font-family: sans-serif;
3
- background: #f0f0f0;
4
- margin: 0;
5
- padding: 2rem;
6
- text-align: center;
7
- }
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- .container {
10
- max-width: 800px;
11
- margin: auto;
12
- background: white;
13
- padding: 2rem;
14
- border-radius: 1rem;
15
- box-shadow: 0 4px 20px rgba(0,0,0,0.1);
16
- }
17
-
18
- select {
19
- margin: 1rem 0;
20
- padding: 0.5rem;
21
- font-size: 1rem;
22
- }
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f0f0f0;
4
+ margin: 0;
5
+ padding: 20px;
6
+ }
7
+ .video-grid {
8
+ display: flex;
9
+ flex-wrap: wrap;
10
+ gap: 20px;
11
+ justify-content: center;
12
+ }
13
+ .video-grid video {
14
+ width: 320px;
15
+ height: 180px;
16
+ object-fit: cover;
17
+ border: 2px solid #ccc;
18
+ border-radius: 8px;
19
+ }
20