sonuprasad commited on
Commit
880d213
1 Parent(s): e03d5da

Upload home1.css with huggingface_hub

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