-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (63 loc) · 1.56 KB
/
Copy pathstyles.css
File metadata and controls
73 lines (63 loc) · 1.56 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
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Styling the main header with an image on the left */
header {
background-color: #007BFF; /* Blue header */
padding: 10px 20px; /* Adjust padding to control header height */
display: flex;
align-items: center;
justify-content: start; /* Align content to the left */
height: 150px; /* Set a fixed height for the header */
}
/* Styling the image inside the header */
.header-image {
height: 100%; /* Make the image fill the header's height */
width: auto; /* Maintain the aspect ratio */
}
/* Centering the search bar container */
.search-container {
display: flex;
justify-content: center;
align-items: center;
height: 60vh; /* Adjusted height for the search container */
flex-direction: column;
}
/* Styling the search bar */
.search-container input[type="text"] {
padding: 10px;
font-size: 16px;
border: 1px solid #007BFF;
border-radius: 5px;
width: 350px;
}
/* Styling the search button */
.search-container button {
padding: 10px 20px;
margin-top: 10px;
font-size: 16px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.search-container button:hover {
background-color: #0056b3;
}
footer {
background-color: #007BFF; /* Same blue as the header */
font-family: "Montserrat", sans-serif;
color: white;
text-align: center;
padding: 10px 20px;
position: fixed;
bottom: 0;
width: 100%;
}
footer p {
margin: 5px 0;
}