sonuprasad commited on
Commit
e3b1606
1 Parent(s): dd2c0f6

Upload home.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. home.css +49 -0
home.css ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* styles.css */
2
+ body{
3
+ background-image: url('./image/imgage.jpg');
4
+ background-size: cover;
5
+ background-repeat: no-repeat;
6
+ background-position: center;
7
+
8
+
9
+ }
10
+
11
+ .container {
12
+ width: 50%;
13
+ margin: 0 auto;
14
+ padding: 20px;
15
+ text-align: center;
16
+ }
17
+
18
+ h1 {
19
+ font-family: Arial, sans-serif;
20
+ color: #333;
21
+ }
22
+
23
+ input[type="file"] {
24
+ display: none;
25
+ }
26
+
27
+ .file-label {
28
+ background-color: #007bff;
29
+ color: #fff;
30
+ padding: 10px 20px;
31
+ border-radius: 5px;
32
+ cursor: pointer;
33
+ font-weight: bold;
34
+ }
35
+
36
+ .detect-button {
37
+ margin-top: 20px;
38
+ background-color: #28a745;
39
+ color: #fff;
40
+ padding: 10px 20px;
41
+ border-radius: 5px;
42
+ border: none;
43
+ cursor: pointer;
44
+ font-weight: bold;
45
+ }
46
+
47
+ .detect-button:hover {
48
+ background-color: #218838;
49
+ }