forked from ayush-that/FinVeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
careers.css
62 lines (54 loc) · 1.88 KB
/
careers.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* styles.css */
.search-container {
margin: 20px 0;
text-align: center; /* Centers the search bar */
}
/* Style for the input field */
#jobSearch {
width: 80%; /* Full width with some padding */
max-width: 400px; /* Maximum width */
padding: 10px; /* Padding inside the input */
border: 2px solid #007BFF; /* Border color */
border-radius: 5px; /* Rounded corners */
font-size: 16px; /* Font size of the input text */
transition: border-color 0.3s; /* Smooth transition for border color */
}
/* Change border color on focus */
#jobSearch:focus {
border-color: #0056b3; /* Darker blue when focused */
outline: none; /* Remove default outline */
}
#salaryFilter {
width: 80%; /* Full width with some padding */
max-width: 200px; /* Maximum width */
padding: 10px; /* Padding inside the input */
border: 2px solid #007BFF; /* Border color */
border-radius: 5px; /* Rounded corners */
font-size: 16px; /* Font size of the input text */
transition: border-color 0.3s; /* Smooth transition for border color */
}
/* Change border color on focus */
#salaryFilter:focus {
border-color: #0056b3; /* Darker blue when focused */
outline: none; /* Remove default outline */
}
/* Job table styles */
.jobs-table {
width: 100%; /* Full width */
border-collapse: collapse; /* Merge borders */
}
.jobs-table th, .jobs-table td {
border: 1px solid #ddd; /* Light gray border */
padding: 8px; /* Padding inside cells */
text-align: left; /* Align text to the left */
}
.jobs-table th {
background-color: #f2f2f2; /* Light gray background for headers */
font-weight: bold; /* Bold font for headers */
}
.no-results {
color: red; /* Red color for "No jobs found" message */
font-weight: bold; /* Bold font for emphasis */
text-align: center; /* Center the message */
margin-top: 20px; /* Margin above the message */
}