File tree Expand file tree Collapse file tree 3 files changed +44
-2
lines changed Expand file tree Collapse file tree 3 files changed +44
-2
lines changed Original file line number Diff line number Diff line change 41
41
// Disable individual files (only applies if above is 'true').
42
42
'enable_custom_head ' => 'true ' ,
43
43
'enable_custom_body ' => 'false ' ,
44
- 'enable_custom_body_end ' => 'false ' ,
44
+ 'enable_custom_body_end ' => 'true ' ,
45
45
46
46
47
47
/*
Original file line number Diff line number Diff line change
1
+ {{-- Crude fix for the stars on higher resolutions --}}
2
+ <script >
3
+
4
+ const object1 = []
5
+ const object2 = []
6
+ const object3 = []
7
+
8
+ const numberOfobject1 = ' 1000'
9
+ const numberOfobject2 = ' 600'
10
+ const numberOfobject3 = ' 100'
11
+
12
+
13
+ for (let i = 0 ; i < numberOfobject1; i++ ) {
14
+ const pos1 = (Math .floor (Math .random () * 5200 ))
15
+ const pos2 = (Math .floor (Math .random () * 5200 ))
16
+ object1 .push (` ${ pos1} px ${ pos2} px #fff` )
17
+ }
18
+
19
+ for (let i = 0 ; i < numberOfobject2; i++ ) {
20
+ const pos1 = (Math .floor (Math .random () * 5200 ))
21
+ const pos2 = (Math .floor (Math .random () * 5200 ))
22
+ object2 .push (` ${ pos1} px ${ pos2} px #fff` )
23
+ }
24
+
25
+ for (let i = 0 ; i < numberOfobject3; i++ ) {
26
+ const pos1 = (Math .floor (Math .random () * 5200 ))
27
+ const pos2 = (Math .floor (Math .random () * 5200 ))
28
+ object3 .push (` ${ pos1} px ${ pos2} px #fff` )
29
+ }
30
+
31
+ const addCSS = css => document .head .appendChild (document .createElement (" style" )).innerHTML = css;
32
+
33
+ addCSS (` #object1{ box-shadow:${ object1} }` )
34
+ addCSS (` #object1:after{ box-shadow:${ object1} }` )
35
+
36
+ addCSS (` #object2{ box-shadow:${ object2} }` )
37
+ addCSS (` #object2:after{ box-shadow:${ object2} }` )
38
+
39
+ addCSS (` #object3{ box-shadow:${ object3} }` )
40
+ addCSS (` #object3:after{ box-shadow:${ object3} }` )
41
+
42
+ </script >
Original file line number Diff line number Diff line change 2
2
Find more themes: https://github.com/linkstackorg/linkstack-themes
3
3
4
4
* Theme Name: Galaxy
5
- * Theme Version: 1.9
5
+ * Theme Version: 2.0
6
6
* Theme Date: 2022-06-09
7
7
* Theme Author: JulianPrieber & LinkStack Team
8
8
* Theme Author URI: https://github.com/JulianPrieber
You can’t perform that action at this time.
0 commit comments