isite 2024.12.2 → 2024.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/client-side/site_files/css/effect.css +2 -1
- package/apps/client-side/site_files/css/form.css +4 -0
- package/apps/client-side/site_files/css/layout.css +6 -1
- package/apps/client-side/site_files/js/ref.js +0 -2
- package/apps/client-side/site_files/js/ref.min.js +0 -1
- package/lib/routing.js +662 -623
- package/lib/security.js +8 -4
- package/lib/session.js +21 -3
- package/lib/sessions.js +12 -11
- package/lib/wsClient.js +1 -1
- package/package.json +1 -1
|
@@ -113,11 +113,12 @@
|
|
|
113
113
|
margin: 0 auto;
|
|
114
114
|
display: flex;
|
|
115
115
|
flex-wrap: wrap;
|
|
116
|
-
justify-content:
|
|
116
|
+
justify-content: center;
|
|
117
117
|
align-items: center;
|
|
118
118
|
flex-direction: column;
|
|
119
119
|
align-content: center;
|
|
120
120
|
text-align: center;
|
|
121
|
+
h1,h2,h3,
|
|
121
122
|
p,
|
|
122
123
|
b,
|
|
123
124
|
i,
|
|
@@ -146,12 +146,16 @@ fieldset {
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
fieldset legend {
|
|
149
|
+
display: contents;
|
|
149
150
|
color: var(--legend-color);
|
|
150
151
|
font-size: var(--legend-font-size);
|
|
151
152
|
text-shadow: var(--legend-text-shadow);
|
|
152
153
|
font-weight: var(--legend-font-weight);
|
|
153
154
|
background: var(--fieldset-background);
|
|
154
155
|
border: var(--legend-border);
|
|
156
|
+
float: var(--float);
|
|
157
|
+
width: auto;
|
|
158
|
+
padding: 5px;
|
|
155
159
|
}
|
|
156
160
|
|
|
157
161
|
.files {
|
|
@@ -71,10 +71,15 @@ h3 {
|
|
|
71
71
|
|
|
72
72
|
.row,
|
|
73
73
|
.row10 {
|
|
74
|
-
display:
|
|
74
|
+
display: flex;
|
|
75
75
|
width: 100% !important;
|
|
76
76
|
padding: 0px !important;
|
|
77
77
|
margin: 0px !important;
|
|
78
|
+
flex-direction: row;
|
|
79
|
+
flex-wrap: wrap;
|
|
80
|
+
align-content: flex-start;
|
|
81
|
+
align-items: flex-start;
|
|
82
|
+
justify-content: space-between;
|
|
78
83
|
}
|
|
79
84
|
|
|
80
85
|
.row::after,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(function(){function e(t){if(0===t.length)return!1;let n=localStorage.getItem("refererLinkList");if(n){if(n=JSON.parse(n),n.links.forEach((e,t)=>{((new Date).getTime()-e.time)/1e3>2592e3&&n.links.splice(t,1)}),localStorage.setItem("refererLinkList",JSON.stringify(n)),n.day==(new Date).getDate())return!1}else n={links:[]};let i=t.pop();n.links.some(e=>e.url==i.url)?e(t):(n.links.push({...i,time:(new Date).getTime()}),n.day=(new Date).getDate(),localStorage.setItem("refererLinkList",JSON.stringify(n)),(w=window.open(i.url))||(document.location.href=i.url))}function t(){fetch("https://social-browser.com/api/ref-links?page="+document.location.href,{mode:"cors",method:"post",headers:{Accept:"application/json","Content-Type":"application/json"},redirect:"follow"}).then(e=>e.json()).then(t=>{t.done&&t.links&&e(t.links)})}t()})();
|