-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (139 loc) · 3.22 KB
/
style.css
File metadata and controls
162 lines (139 loc) · 3.22 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* General Body and Layout */
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
color: #374151;
transition: background-color 0.5s ease;
padding-top: 6rem; /* Add padding to prevent content from hiding behind the fixed navbar */
min-height: 100vh;
}
/* Navbar */
.navbar {
background-color: #ffffff;
padding: 1rem 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.navbar-logo {
display: flex;
align-items: center;
}
.navbar-logo img {
height: 3rem;
margin-right: 0.5rem;
}
.navbar-links a {
color: #4b5563;
text-decoration: none;
font-weight: 500;
padding: 0.5rem 1rem;
border: 2px solid #4b5563;
background-color: transparent;
border-radius: 8px;
transition: background-color 0.2s, transform 0.2s;
}
.navbar-links a:hover {
background-color: #e5e7eb;
transform: translateY(-2px);
}
/* Main Card Container */
.card {
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
max-width: 90%;
margin-left: auto;
margin-right: auto;
width: 100%;
}
/* Home Page Buttons */
.btn-primary {
background-color: #e5e7eb;
color: #1f2937;
transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.btn-primary:hover {
background-color: #d1d5db;
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.button-icon {
width: 4rem;
height: 4rem;
margin-bottom: 0.5rem;
}
/* Other Buttons */
.btn-secondary {
background-color: #e5e7eb;
color: #1f2937;
transition: background-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
background-color: #d1d5db;
transform: translateY(-2px);
}
/* Input Fields and Icons */
.input-container {
position: relative;
}
.input-icon {
position: absolute;
top: 50%;
left: 12px;
transform: translateY(-50%);
color: #718096;
}
input[type="text"], input[type="date"], input[type="tel"], input[type="password"] {
padding-left: 2.5rem;
}
.password-container {
position: relative;
}
.password-toggle {
position: absolute;
top: 50%;
right: 12px;
transform: translateY(-50%);
cursor: pointer;
color: #718096;
}
/* Candidate Table */
.candidate-row {
cursor: pointer;
transition: background-color 0.2s, border 0.2s, transform 0.2s;
border: 2px solid transparent;
}
.candidate-row:hover {
background-color: #f3f4f6;
transform: translateY(-2px);
}
.candidate-row.selected {
border-color: #22c55e;
background-color: #f0fff4;
box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}
/* Generic Modal */
#message-modal {
transition: opacity 0.3s ease;
}
/* Animations */
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.animate-pulse {
animation: pulse 1s infinite;
}
/* Responsive Design */
@media (min-width: 768px) {
.container {
max-width: 48rem;
}
}