sonuprasad commited on
Commit
5b70e08
1 Parent(s): 933e24e

Upload static\css\home1.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. static//css//home1.css +62 -0
static//css//home1.css ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* background image for the body */
2
+ body {
3
+ background-image: url('./image/imgage.jpg'); /* URL of the background image */
4
+ background-size: cover; /* Cover the entire background */
5
+ background-repeat: no-repeat; /* Do not repeat the background image */
6
+ background-position: right; /* Align the background image to the right */
7
+ background-attachment: fixed;
8
+ }
9
+
10
+ /* Styling the container */
11
+ .container {
12
+ width: 50%; /* Set container width to 50% of the viewport */
13
+ margin: 200px auto; /* Center the container horizontally */
14
+ padding: 5px; /* Add padding inside the container */
15
+ text-align: center; /* Center-align text inside the container */
16
+ float: left; /* Float the container to the left */
17
+ }
18
+
19
+ /* Styling the heading */
20
+ h1 {
21
+ font-family: Arial, sans-serif; /* Set font family for the heading */
22
+ color: #fff; /* Set text color */
23
+ }
24
+
25
+ /* Styling the file label */
26
+ .file-label {
27
+ background-color: #007bff; /* Set background color */
28
+ color: #fff; /* Set text color */
29
+ padding: 10px 20px; /* Add padding */
30
+ border-radius: 5px; /* Add border radius */
31
+ cursor: pointer; /* Change cursor to pointer on hover */
32
+ font-weight: bold; /* Set font weight */
33
+ }
34
+
35
+ /* Styling the detect button */
36
+ .detect-button {
37
+ margin-top: 20px; /* Add margin on top */
38
+ background-color: #28a745; /* Set background color */
39
+ color: #fff; /* Set text color */
40
+ padding: 10px 20px; /* Add padding */
41
+ border-radius: 5px; /* Add border radius */
42
+ border: none; /* Remove border */
43
+ cursor: pointer; /* Change cursor to pointer on hover */
44
+ font-weight: bold; /* Set font weight */
45
+ }
46
+
47
+ /* Styling the detect button on hover */
48
+ .detect-button:hover {
49
+ background-color: #218838; /* Change background color on hover */
50
+ }
51
+
52
+ /* Clear float to prevent layout issues */
53
+ .clearfix::after {
54
+ content: "";
55
+ display: table;
56
+ clear: both;
57
+ }
58
+
59
+ h2 {
60
+ color: #fff; /* Set text color */
61
+ font-weight: bold; /* Set font weight */
62
+ }