-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme_style.css
45 lines (36 loc) · 1.07 KB
/
contactme_style.css
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
/* body background image */
body {
background-image: url('contactme.avif');
background-size: cover; /* Cover the entire viewport */
background-position: center; /* Center the background image */
}
/* Heading style */
.text-center {
color: rgb(25, 123, 141); /* Text color */
font-size: 3.5rem;
margin-bottom: 2rem;
font-weight: bold;
font-style: inherit;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Change font family */
}
/* Form label style */
.form-group label {
color: rgb(4, 121, 137); /* Label color */
font-size: larger;
font-weight: bold;
}
/* Form input style */
.form-control {
border-radius: 10px; /* Rounded corners for inputs */
}
/* Submit button style */
.btn {
background-color: rgb(18, 109, 112); /* Button color */
border: none; /* Remove button border */
padding: 10px 20px; /* Add padding to the button */
font-weight: bolder;
width:20;
}
.btn:hover {
background-color: rgb(229, 241, 241); /* Darker color on hover */
}