heboya8 commited on
Commit
36896cd
·
verified ·
1 Parent(s): 9321d61

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +29 -0
static/style.css ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ text-align: center;
4
+ margin: 20px;
5
+ background-color: #f0f0f0;
6
+ }
7
+ h1 {
8
+ color: #333;
9
+ }
10
+ .image-container {
11
+ display: flex;
12
+ justify-content: center;
13
+ }
14
+ img, video {
15
+ max-width: 50%;
16
+ border: 1px solid #ccc;
17
+ margin: 10px;
18
+ }
19
+ button {
20
+ margin: 10px;
21
+ padding: 10px 20px;
22
+ background-color: #007bff;
23
+ color: white;
24
+ border: none;
25
+ cursor: pointer;
26
+ }
27
+ button:hover {
28
+ background-color: #0056b3;
29
+ }