-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.css
More file actions
95 lines (81 loc) · 1.79 KB
/
contactus.css
File metadata and controls
95 lines (81 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* Reset some default browser styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Apply a background color to the whole page */
body {
background-image:url('contactimg.jpg');
background-size: cover; /* Adjust as needed */
background-repeat: no-repeat;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Style the header */
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
/* Style the main section */
main {
width: 50%;
margin: auto auto;
padding: 20px;
background-color: #fff;
background:transparent; /* Adjust the background color and transparency */
border: 2px solid rgba(224, 223, 223, 0.2);
backdrop-filter: blur(20px);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
color: black;
border-radius: 10px;
padding: 30px 40px;
}
/* Style the form elements */
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-weight: bold;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.form-group textarea {
resize: vertical;
}
/* Style the submit button */
.btn{width: 100%;
height: 45px;
background:black;
border: none;
outline: none;
border-radius: 40px;
cursor: pointer;
font-size: 16px;
color:white;
font-weight: 600;}
/* Style the footer */
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: #fff;
position: fixed;
bottom: 0;
width: 100%;
}
div{margin-top:20px;
margin-bottom: 20px
}
h2{
text-align: center;
}