-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
133 lines (111 loc) · 1.98 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f9;
color: #333;
}
h1, h2 {
text-align: center;
margin-bottom: 20px;
}
/* Form Section Styles */
#form-section {
margin-bottom: 40px;
}
form {
display: flex;
gap: 10px;
justify-content: center;
margin-bottom: 20px;
flex-wrap: wrap;
}
form input, form select, form button, form textarea {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
width: 250px;
}
form button {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
form button:hover {
background-color: #45a049;
}
form textarea {
width: 100%;
max-width: 250px;
resize: none;
}
/* Search Bar Styles */
#search-input {
padding: 10px;
font-size: 16px;
width: 100%;
max-width: 300px;
margin: 0 auto;
display: block;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Jobs Table Styles */
#jobs-section {
margin-top: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
button {
padding: 5px 10px;
margin: 0 5px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #f0f0f0;
}
/* Action Button Styles */
button {
background-color: #007BFF;
color: white;
border: none;
}
button:hover {
background-color: #0056b3;
}
/* Styling for Save Changes */
button[onclick^="saveChanges"] {
background-color: #28a745;
color: white;
}
button[onclick^="saveChanges"]:hover {
background-color: #218838;
}
button[onclick^="editJob"] {
background-color: #FFC107;
color: white;
}
button[onclick^="editJob"]:hover {
background-color: #e0a800;
}
#export-btn , #import-btn-action {
background-color: black;
}