Skip to content

Commit 45d1440

Browse files
author
RB Projects
committed
- custom css and js files
1 parent 61ab604 commit 45d1440

File tree

6 files changed

+471
-1
lines changed

6 files changed

+471
-1
lines changed

public/css/app.css

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
:root{
2+
--main-radius: 10px;
3+
--md-font-size: 1.5rem;
4+
5+
--deep-purple: #B24592;
6+
7+
--main-gradient: linear-gradient(to right, #F15F79, var(--deep-purple));
8+
--main-gradient-inverse: linear-gradient(to left, #F15F79, var(--deep-purple));
9+
10+
}
11+
12+
.text-deep-purple{
13+
color: var(--deep-purple);
14+
}
15+
16+
.listingTags li{
17+
background:var(--main-gradient);
18+
}
19+
20+
@media (min-width: 640px) {
21+
.listingTags li a{
22+
font-size: var(--md-font-size);
23+
padding: 10px;
24+
line-height: 1.5rem;
25+
}
26+
}
27+
28+
@media (max-width: 640px) {
29+
.listingTags li a{
30+
font-size: 1rem;
31+
text-align: center;
32+
word-wrap: initial;
33+
padding: 5px;
34+
}
35+
36+
}
37+
38+
.listingTags li:hover{
39+
background: var(--main-gradient-inverse)!important;
40+
transition: 0.5s;
41+
box-shadow: 0px 0px 10px #8e0393;
42+
}
43+
44+
.main-gradient{
45+
background: var(--main-gradient)!important;
46+
}
47+
48+
/* .main-gradient:hover{
49+
background: var(--main-gradient-inverse)!important;
50+
} */
51+
52+
.bgc-main-gradient{
53+
background-color: var(--main-gradient)!important;
54+
}
55+
56+
.nav-header{
57+
box-shadow: 0px 1px 10px #520355;
58+
z-index: 9999;
59+
position: sticky;
60+
}
61+
62+
.sticky{
63+
box-shadow: 0px 1px 10px #520355;
64+
z-index: 9999;
65+
66+
background: white;
67+
position: fixed;
68+
top: 0;
69+
width: 100%;
70+
transition: 0.5s;
71+
}
72+
73+
.x-card:hover{
74+
box-shadow: 0px 0px 30px #8e0393!important;
75+
transition: 0.5s;
76+
}
77+
78+
.x-card h3 a, .x-card h3{
79+
font-weight: bold;
80+
font-size: var(--md-font-size);
81+
color: #B24592;
82+
text-decoration: underline;
83+
}
84+
85+
.x-card h3 a:hover{
86+
font-weight: bold;
87+
font-size: var(--md-font-size);
88+
color: #a21c7a;
89+
text-decoration: underline;
90+
}
91+
92+
.c-purple{
93+
color: #B24592;
94+
}
95+
96+
.btn-gradient{
97+
background: var(--main-gradient)!important;
98+
color: white;
99+
padding: 10px;
100+
border-radius: var(--main-radius);
101+
font-weight: bold;
102+
}
103+
104+
.btn-gradient:hover{
105+
background: var(--main-gradient-inverse)!important;
106+
color: white;
107+
padding: 10px;
108+
border-radius: var(--main-radius);
109+
font-weight: bold;
110+
111+
box-shadow: 0px 0px 10px #8e0393!important;
112+
113+
}
114+
115+
.custom-input:focus{
116+
box-shadow: 0px 0px 10px #8e0393!important;
117+
transition: 0.5s;
118+
}
119+
120+
footer{
121+
box-shadow: 0px 1px 10px #520355;
122+
}
123+
124+
.btn-dark-purple{
125+
126+
}
127+
128+
.btn-dark-purple:hover{
129+
--tw-text-opacity: 1;
130+
color: white;
131+
background: #431571;
132+
box-shadow: 0px 0px 10px white;
133+
font-weight: bold;
134+
}
135+
136+
.flip-image{
137+
transform: scaleX(-1);
138+
}

public/images/app_logo.png

96.9 KB
Loading

public/js/app.js

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
/******/ (() => { // webpackBootstrap
2+
/******/ var __webpack_modules__ = ({
3+
4+
/***/ "./resources/js/app.js":
5+
/*!*****************************!*\
6+
!*** ./resources/js/app.js ***!
7+
\*****************************/
8+
/***/ (() => {
9+
10+
var navbar = document.getElementsByTagName('nav')[0];
11+
var top = navbar.offsetTop;
12+
function stickynavbar() {
13+
if (window.scrollY >= top) {
14+
navbar.classList.add('sticky');
15+
} else {
16+
navbar.classList.remove('sticky');
17+
}
18+
}
19+
window.addEventListener('scroll', stickynavbar);
20+
21+
/***/ }),
22+
23+
/***/ "./resources/css/app.css":
24+
/*!*******************************!*\
25+
!*** ./resources/css/app.css ***!
26+
\*******************************/
27+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28+
29+
"use strict";
30+
__webpack_require__.r(__webpack_exports__);
31+
// extracted by mini-css-extract-plugin
32+
33+
34+
/***/ })
35+
36+
/******/ });
37+
/************************************************************************/
38+
/******/ // The module cache
39+
/******/ var __webpack_module_cache__ = {};
40+
/******/
41+
/******/ // The require function
42+
/******/ function __webpack_require__(moduleId) {
43+
/******/ // Check if module is in cache
44+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
45+
/******/ if (cachedModule !== undefined) {
46+
/******/ return cachedModule.exports;
47+
/******/ }
48+
/******/ // Create a new module (and put it into the cache)
49+
/******/ var module = __webpack_module_cache__[moduleId] = {
50+
/******/ // no module.id needed
51+
/******/ // no module.loaded needed
52+
/******/ exports: {}
53+
/******/ };
54+
/******/
55+
/******/ // Execute the module function
56+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
57+
/******/
58+
/******/ // Return the exports of the module
59+
/******/ return module.exports;
60+
/******/ }
61+
/******/
62+
/******/ // expose the modules object (__webpack_modules__)
63+
/******/ __webpack_require__.m = __webpack_modules__;
64+
/******/
65+
/************************************************************************/
66+
/******/ /* webpack/runtime/chunk loaded */
67+
/******/ (() => {
68+
/******/ var deferred = [];
69+
/******/ __webpack_require__.O = (result, chunkIds, fn, priority) => {
70+
/******/ if(chunkIds) {
71+
/******/ priority = priority || 0;
72+
/******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
73+
/******/ deferred[i] = [chunkIds, fn, priority];
74+
/******/ return;
75+
/******/ }
76+
/******/ var notFulfilled = Infinity;
77+
/******/ for (var i = 0; i < deferred.length; i++) {
78+
/******/ var [chunkIds, fn, priority] = deferred[i];
79+
/******/ var fulfilled = true;
80+
/******/ for (var j = 0; j < chunkIds.length; j++) {
81+
/******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {
82+
/******/ chunkIds.splice(j--, 1);
83+
/******/ } else {
84+
/******/ fulfilled = false;
85+
/******/ if(priority < notFulfilled) notFulfilled = priority;
86+
/******/ }
87+
/******/ }
88+
/******/ if(fulfilled) {
89+
/******/ deferred.splice(i--, 1)
90+
/******/ var r = fn();
91+
/******/ if (r !== undefined) result = r;
92+
/******/ }
93+
/******/ }
94+
/******/ return result;
95+
/******/ };
96+
/******/ })();
97+
/******/
98+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
99+
/******/ (() => {
100+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
101+
/******/ })();
102+
/******/
103+
/******/ /* webpack/runtime/make namespace object */
104+
/******/ (() => {
105+
/******/ // define __esModule on exports
106+
/******/ __webpack_require__.r = (exports) => {
107+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
108+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
109+
/******/ }
110+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
111+
/******/ };
112+
/******/ })();
113+
/******/
114+
/******/ /* webpack/runtime/jsonp chunk loading */
115+
/******/ (() => {
116+
/******/ // no baseURI
117+
/******/
118+
/******/ // object to store loaded and loading chunks
119+
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
120+
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
121+
/******/ var installedChunks = {
122+
/******/ "/js/app": 0,
123+
/******/ "css/app": 0
124+
/******/ };
125+
/******/
126+
/******/ // no chunk on demand loading
127+
/******/
128+
/******/ // no prefetching
129+
/******/
130+
/******/ // no preloaded
131+
/******/
132+
/******/ // no HMR
133+
/******/
134+
/******/ // no HMR manifest
135+
/******/
136+
/******/ __webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);
137+
/******/
138+
/******/ // install a JSONP callback for chunk loading
139+
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
140+
/******/ var [chunkIds, moreModules, runtime] = data;
141+
/******/ // add "moreModules" to the modules object,
142+
/******/ // then flag all "chunkIds" as loaded and fire callback
143+
/******/ var moduleId, chunkId, i = 0;
144+
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
145+
/******/ for(moduleId in moreModules) {
146+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
147+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
148+
/******/ }
149+
/******/ }
150+
/******/ if(runtime) var result = runtime(__webpack_require__);
151+
/******/ }
152+
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
153+
/******/ for(;i < chunkIds.length; i++) {
154+
/******/ chunkId = chunkIds[i];
155+
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
156+
/******/ installedChunks[chunkId][0]();
157+
/******/ }
158+
/******/ installedChunks[chunkId] = 0;
159+
/******/ }
160+
/******/ return __webpack_require__.O(result);
161+
/******/ }
162+
/******/
163+
/******/ var chunkLoadingGlobal = self["webpackChunklaravel_pixels"] = self["webpackChunklaravel_pixels"] || [];
164+
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
165+
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
166+
/******/ })();
167+
/******/
168+
/************************************************************************/
169+
/******/
170+
/******/ // startup
171+
/******/ // Load entry module and return exports
172+
/******/ // This entry module depends on other loaded chunks and execution need to be delayed
173+
/******/ __webpack_require__.O(undefined, ["css/app"], () => (__webpack_require__("./resources/js/app.js")))
174+
/******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["css/app"], () => (__webpack_require__("./resources/css/app.css")))
175+
/******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
176+
/******/
177+
/******/ })()
178+
;

public/mix-manifest.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"/js/app.js": "/js/app.js",
3+
"/css/app.css": "/css/app.css"
4+
}

0 commit comments

Comments
 (0)