-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
104 lines (85 loc) · 3.38 KB
/
header.php
File metadata and controls
104 lines (85 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" 2content="initial-scale=1.0">
<title>SLJP</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/quill@2.0.3/dist/quill.snow.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/quill@2.0.3/dist/quill.js"></script>
<style>
:root {
--my-secondary: #bbbcbd;
--my-primary: #b8f3ff;
}
.hover:hover {
background: var(--my-secondary);
}
.btn-hover:hover {
background: var(--my-primary);
}
.hover-secondary {
padding: 0 25px 0 25px;
border-radius: 25px;
}
.hover-secondary:hover {
background: var(--my-secondary);
}
.icon-cover {
padding: 20px;
border-radius: 30px;
background: var(--my-secondary);
}
.scale-1 {
transform: scale(1.2);
/* Adjust the scale to increase size */
/* margin-right: 10px; */
}
.my-form-control:focus {
box-shadow: none !important;
}
textarea {
resize: none;
}
textarea {
width: 100%;
/* Make the textarea responsive */
min-height: 150px;
/* Set minimum height for the textarea */
box-sizing: border-box;
/* Prevent overflow */
}
.arrow-icon {
float: right;
margin-left: 5px;
}
.fa-angle-up {
transition: transform 0.3s ease-in-out;
}
.collapsed .fa-angle-up {
transform: rotate(-180deg);
}
.fa-angle-down {
transition: transform 0.3s ease-in-out;
}
.collapsed .fa-angle-down {
transform: rotate(-180deg);
}
.post-hover:hover {
text-decoration: underline !important;
color: blue !important;
}
.click-hover:hover {
cursor: pointer;
text-decoration: underline;
}
.job-hover:hover {
background-color: rgba(186, 186, 255, 0.2);
}
</style>
</head>
<body class="bg-light">