-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (89 loc) · 1.9 KB
/
styles.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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
/* styles.css */
/* Reset default browser styles */
body, h1, h2, h3, p, ul, li, form, input, button {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Set a background color and font styles */
body {
background-color: #f7f7f7;
background-image: url(Loginpagebackground.jpeg);
font-family: Arial, sans-serif;
color: #faf9f9;
}
/* Header styles */
header {
background-color: #333;
background-image: url(Loginpagebackground.jpeg);
padding: 20px;
color: #fff;
}
header h1 {
font-size: 28px;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline-block;
margin-right: 15px;
}
nav ul li a {
text-decoration: none;
color: #f4f5f7;
}
/* Search section styles */
section {
padding: 50px;
width: 100%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
section h2 {
font-size: 24px;
margin-bottom: 10px;
}
form input[type="text"], form select {
padding: 8px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
form button {
padding: 8px 16px;
background-color: #333;
color: #12e844;
border: none;
border-radius: 4px;
cursor: pointer;
}
/* Featured jobs section styles */
section ul {
list-style: none;
}
section ul li {
background-color: #f6f6fb;
padding: 20px;
width: 100%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
section ul li h3 {
font-size: 20px;
margin-bottom: 5px;
}
section ul li p {
font-size: 14px;
margin-bottom: 5px;
}
section ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
}
/* Footer styles */
footer {
background-color: #333;
color: #f5f4f4;
text-align: center;
padding: 10px;
}