├── FaxStore ├── README.md └── hyperz-faxstore.css ├── README.md ├── .github └── FUNDING.yml ├── LICENSE ├── FaxDocs ├── README.md └── hyperz-docs.css ├── FaxUP ├── README.md └── hyperz-status.css ├── FaxLicense (faxstore) ├── README.md └── hyperz-license.css └── .gitignore /FaxStore/README.md: -------------------------------------------------------------------------------- 1 | FaxStore supports themes natively. Simply upload this file in the themes manager of the admin panel! 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HyperDark-Package 2 | A mega theme package for FAXES Weblutions products to theme all of your websites the same way! 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: Itz-Hyperz # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | “Commons Clause” License Condition v1.0 2 | 3 | The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. 4 | 5 | Without limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Software. 6 | 7 | For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Clause License Condition notice. 8 | 9 | Software: Hyperz Cloud System 10 | 11 | License: BSD 2-Clause License 12 | 13 | Licensor: Hyperz Development 14 | -------------------------------------------------------------------------------- /FaxDocs/README.md: -------------------------------------------------------------------------------- 1 | # Installation (Themes) 2 | - Navigate to your site settings / theme management category on your website. 3 | - Upload the theme CSS file to your website and save changes. 4 | - If necessary, apply the theme in the site settings after you have uploaded the theme. 5 | - Enjoy! 6 | 7 | # Installation (Manual) 8 | - Navigate to your website `views` folder. 9 | - Open the `_header.ejs` file within the folder to begin editing it. 10 | - Add the below line to the `_header.ejs` file **below** where it says `` 11 | ```html 12 | 13 | ``` 14 | - Save your `_header.ejs` file now. 15 | - Load your website, it may take awhile for your website cache to update and load the new CSS files and styling. 16 | - If you wish to clear this up, you can get a CSS Reloader chrome extension to reload it manually. (link below) 17 | 18 | CSS Reloader: https://chrome.google.com/webstore/detail/css-reloader-fixed/fkbenfjedcbdpmkgbmbliahhmohamdlj 19 | 20 | # Credits 21 | This work is the property of Hyperz#0001 22 | -------------------------------------------------------------------------------- /FaxUP/README.md: -------------------------------------------------------------------------------- 1 | # Installation (Themes) 2 | - Navigate to your site settings / theme management category on your website. 3 | - Upload the theme CSS file to your website and save changes. 4 | - If necessary, apply the theme in the site settings after you have uploaded the theme. 5 | - Enjoy! 6 | 7 | # Installation (Manual) 8 | - Navigate to your website `views` folder. 9 | - Open the `_header.ejs` file within the folder to begin editing it. 10 | - Add the below line to the `_header.ejs` file **below** where it says `` 11 | ```html 12 | 13 | ``` 14 | - Save your `_header.ejs` file now. 15 | - Load your website, it may take awhile for your website cache to update and load the new CSS files and styling. 16 | - If you wish to clear this up, you can get a CSS Reloader chrome extension to reload it manually. (link below) 17 | 18 | CSS Reloader: https://chrome.google.com/webstore/detail/css-reloader-fixed/fkbenfjedcbdpmkgbmbliahhmohamdlj 19 | 20 | # Credits 21 | This work is the property of Hyperz#0001 22 | -------------------------------------------------------------------------------- /FaxLicense (faxstore)/README.md: -------------------------------------------------------------------------------- 1 | # Installation (Themes) 2 | - Navigate to your site settings / theme management category on your website. 3 | - Upload the theme CSS file to your website and save changes. 4 | - If necessary, apply the theme in the site settings after you have uploaded the theme. 5 | - Enjoy! 6 | 7 | # Installation (Manual) 8 | - Navigate to your website `views` folder. 9 | - Open the `_header.ejs` file within the folder to begin editing it. 10 | - Add the below line to the `_header.ejs` file **below** where it says `` 11 | ```html 12 | 13 | ``` 14 | - Save your `_header.ejs` file now. 15 | - Load your website, it may take awhile for your website cache to update and load the new CSS files and styling. 16 | - If you wish to clear this up, you can get a CSS Reloader chrome extension to reload it manually. (link below) 17 | 18 | CSS Reloader: https://chrome.google.com/webstore/detail/css-reloader-fixed/fkbenfjedcbdpmkgbmbliahhmohamdlj 19 | 20 | # Credits 21 | This work is the property of Hyperz#0001 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | 106 | # Configuration Files 107 | config.json 108 | -------------------------------------------------------------------------------- /FaxLicense (faxstore)/hyperz-license.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #0C1017; 3 | } 4 | 5 | p { 6 | color: white; 7 | } 8 | 9 | #main > .inner > header > .full:first-child { 10 | background-color: #171A22; 11 | } 12 | 13 | #text04, #text07, #text05, #text03, #text06 { 14 | color: white; 15 | } 16 | 17 | #table02 .table-inner table tbody tr td, #table02 .table-inner table thead tr th, #table02 .table-inner table tbody tr td .convertPara { 18 | color: white; 19 | } 20 | 21 | #table02 .table-inner table tbody tr td a, #text02 a { 22 | color: #0099ff; 23 | } 24 | 25 | #table02 { 26 | margin-top: 0.4em; 27 | background-color: #171A22; 28 | border-radius: 0.4em; 29 | padding: 1em; 30 | } 31 | 32 | #table02 thead { 33 | border-bottom: solid 2px #ffffff; 34 | } 35 | 36 | #table02 tbody tr { 37 | border-top: solid 1px rgba(255, 255, 255, 0.373); 38 | } 39 | 40 | #list01 ul li p a { 41 | color: #0099ff; 42 | } 43 | 44 | #form01 button { 45 | background-color: #0099ff; 46 | color: #FFFFFF; 47 | } 48 | 49 | #form01 button:hover { 50 | background-color: #1c1f29; 51 | } 52 | 53 | #form01 input[type="text"], #form01 input[type="email"], #form01 textarea, #form01 select, #form01 .file { 54 | color: #FFFFFF; 55 | border: solid 1px #0099ff; 56 | background-color: #1c1f29; 57 | } 58 | 59 | #form01 input[type="text"]::placeholder { 60 | color: #FFFFFF; 61 | } 62 | 63 | #form01 input[type="checkbox"] + label:before { 64 | color: #FFFFFF; 65 | border: solid 1px #0099ff; 66 | } 67 | 68 | #list01 ul li:before { 69 | background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23ffffff%22%20%2F%3E%3C%2Fsvg%3E'); 70 | } 71 | 72 | #text02 { 73 | color: white; 74 | } 75 | 76 | /* 77 | _ _ ____ ____ ____ 78 | | | | |_ _ _ __ ___ _ __ ____ / ___/ ___/ ___| 79 | | |_| | | | | '_ \ / _ \ '__|_ / | | \___ \___ \ 80 | | _ | |_| | |_) | __/ | / / | |___ ___) |__) | 81 | |_| |_|\__, | .__/ \___|_| /___| \____|____/____/ 82 | |___/|_| 83 | */ -------------------------------------------------------------------------------- /FaxDocs/hyperz-docs.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #0D1117 !important; 3 | color: white !important; 4 | } 5 | 6 | #container02 { 7 | background-color: #171A22 !important; 8 | } 9 | 10 | .flex-item { 11 | background-color: #21262D !important; 12 | box-shadow: 0px 9px 30px rgba(70, 70, 70, 0.3) !important; 13 | padding: 5px !important; 14 | width: 240px !important; 15 | height: 280px !important; 16 | /* height: auto !important; */ 17 | float: left !important; 18 | margin: 10px !important; 19 | color: #ccc !important; 20 | border-radius: 5px !important; 21 | -webkit-transition: box-shadow .3s, border-color .3s !important; 22 | -moz-transition: box-shadow .3s, border-color .3s !important; 23 | -o-transition: box-shadow .3s, border-color .3s !important; 24 | -ms-transition: box-shadow .3s, border-color .3s !important; 25 | transition: box-shadow .3s, border-color .3s !important; 26 | /* overflow: hidden; */ 27 | } 28 | 29 | .inner .field #form01-untitled { 30 | color: #FFFFFF !important; 31 | background-color: #21262D !important; 32 | } 33 | 34 | #form01 .inner .actions button { 35 | background-color: #21262D !important; 36 | color: #FFFFFF !important; 37 | } 38 | 39 | #text12 { 40 | color: #FFFFFF !important; 41 | } 42 | 43 | #text03 { 44 | color: rgba(255,255,255,0.239) !important; 45 | } 46 | 47 | #form01 ::-webkit-input-placeholder { 48 | color: #FFFFFF !important; 49 | opacity: 0.55; 50 | } 51 | 52 | #form01 :-moz-placeholder { 53 | color: #FFFFFF !important; 54 | opacity: 0.55; 55 | } 56 | 57 | #form01 ::-moz-placeholder { 58 | color: #FFFFFF !important; 59 | opacity: 0.55; 60 | } 61 | 62 | #form01 :-ms-input-placeholder { 63 | color: #FFFFFF !important; 64 | opacity: 0.55; 65 | } 66 | 67 | .flex-item h2 { 68 | color: #FFFFFF !important; 69 | } 70 | 71 | .flex-item h3 { 72 | color: #FFFFFF !important; 73 | } 74 | 75 | .convertQuote { 76 | background-color: #404040 !important; 77 | } 78 | 79 | .convertli { 80 | color: #FFFFFF !important; 81 | } 82 | 83 | .hljs { 84 | background-color: #21262D !important; 85 | color: white !important; 86 | } 87 | 88 | .label { 89 | color: white; 90 | } 91 | 92 | .meta-data { 93 | color: #FFFFFF !important; 94 | } 95 | 96 | #form04 input[type="text"], #form04 input[type="email"], #form04 textarea, #form04 select, #form04 .file { 97 | border-color: white !important; 98 | } 99 | 100 | p { 101 | color: #FFFFFF !important; 102 | } 103 | 104 | ul { 105 | color: #FFFFFF !important; 106 | } 107 | 108 | h1 { 109 | color: #FFFFFF !important; 110 | } 111 | 112 | h2 { 113 | color: #FFFFFF !important; 114 | } 115 | 116 | h3 { 117 | color: #FFFFFF !important; 118 | } 119 | 120 | .themechanger { 121 | display: none !important; 122 | visibility: hidden !important; 123 | } 124 | 125 | /* 126 | _ _ ____ ____ ____ 127 | | | | |_ _ _ __ ___ _ __ ____ / ___/ ___/ ___| 128 | | |_| | | | | '_ \ / _ \ '__|_ / | | \___ \___ \ 129 | | _ | |_| | |_) | __/ | / / | |___ ___) |__) | 130 | |_| |_|\__, | .__/ \___|_| /___| \____|____/____/ 131 | |___/|_| 132 | */ -------------------------------------------------------------------------------- /FaxUP/hyperz-status.css: -------------------------------------------------------------------------------- 1 | .uptimeContInner { 2 | background-color: #171A22 !important; 3 | } 4 | 5 | #buttons01 .button { 6 | background-color: #171A22; 7 | color: #FFFFFF; 8 | border-color: #04F471; 9 | border-style: solid; 10 | border-width: 3px; 11 | } 12 | 13 | #buttons01 .n02 { 14 | background-color: #171A22; 15 | color: #FFFFFF; 16 | border-style: solid; 17 | border-width: 3px; 18 | border-color: #FF7A00; 19 | } 20 | 21 | #buttons01 .n03 { 22 | background-color: #171A22; 23 | color: #FFFFFF; 24 | border-style: solid; 25 | border-width: 3px; 26 | border-color: #ED4245; 27 | } 28 | 29 | #buttons03 .button { 30 | background-color: #171A22; 31 | color: #FFFFFF; 32 | border-radius: 0.4em; 33 | border-style: solid; 34 | border-width: 3px; 35 | border-color: #0D92FE; 36 | } 37 | 38 | #buttons03 .button:hover { 39 | background-color: #13151b !important; 40 | } 41 | 42 | #text07 a { 43 | color: #0D92FE; 44 | text-decoration: none; 45 | } 46 | 47 | #form02 .actions button { 48 | background-color: #171A22; 49 | border-color: #0D92FE; 50 | color: #FFFFFF; 51 | border-radius: 0.4em; 52 | border-style: solid; 53 | border-width: 3px; 54 | } 55 | 56 | #form02 .actions button:hover { 57 | background-color: #13151b; 58 | } 59 | 60 | #form03 .actions button { 61 | background-color: #171A22; 62 | border-color: #0D92FE; 63 | color: #FFFFFF; 64 | border-radius: 0.4em; 65 | border-style: solid; 66 | border-width: 3px; 67 | } 68 | 69 | #form03 .actions button:hover { 70 | background-color: #13151b; 71 | } 72 | 73 | #form04 .actions button { 74 | background-color: #171A22; 75 | border-color: #0D92FE; 76 | color: #FFFFFF; 77 | border-radius: 0.4em; 78 | border-style: solid; 79 | border-width: 3px; 80 | } 81 | 82 | #form04 .actions button:hover { 83 | background-color: #13151b; 84 | } 85 | 86 | #form05 .actions button { 87 | background-color: #171A22; 88 | border-color: #0D92FE; 89 | color: #FFFFFF; 90 | border-radius: 0.4em; 91 | border-style: solid; 92 | border-width: 3px; 93 | } 94 | 95 | #form05 .actions button:hover { 96 | background-color: #13151b; 97 | } 98 | 99 | #form06 .actions button { 100 | background-color: #171A22; 101 | border-color: #0D92FE; 102 | color: #FFFFFF; 103 | border-radius: 0.4em; 104 | border-style: solid; 105 | border-width: 3px; 106 | } 107 | 108 | #form06 .actions button:hover { 109 | background-color: #13151b; 110 | } 111 | 112 | #form07 .actions button { 113 | background-color: #171A22; 114 | border-color: #0D92FE; 115 | color: #FFFFFF; 116 | border-radius: 0.4em; 117 | border-style: solid; 118 | border-width: 3px; 119 | } 120 | 121 | #form07 .actions button:hover { 122 | background-color: #13151b; 123 | } 124 | 125 | #form08 .actions button { 126 | background-color: #171A22; 127 | border-color: #0D92FE; 128 | color: #FFFFFF; 129 | border-radius: 0.4em; 130 | border-style: solid; 131 | border-width: 3px; 132 | } 133 | 134 | #form08 .actions button:hover { 135 | background-color: #13151b; 136 | } 137 | 138 | #form02 input[type="text"], #form02 input[type="email"], #form02 input[type="tel"], #form02 input[type="number"], #form02 select, #form02 .file { 139 | background-color: #171A22; 140 | } 141 | 142 | #buttons05 .button { 143 | color: #FFFFFF; 144 | background-color: #171A22; 145 | border: solid 1px #FFFFFF; 146 | border-radius: 0.4em; 147 | } 148 | 149 | #table03 a { 150 | color: #0D92FE; 151 | text-decoration: none; 152 | } 153 | 154 | #buttons04 li { 155 | color: #FFFFFF; 156 | background-color: #171A22; 157 | border: solid 1px #FFFFFF; 158 | border-radius: 0.4em; 159 | } 160 | 161 | #table02, #table03, #table04, #table05, #table06, #table07 { 162 | background-color: #171A22; 163 | border-radius: 0.4em; 164 | padding: 1em; 165 | border-color: white; 166 | border-width: 1px; 167 | border-style: solid; 168 | } 169 | 170 | #form03 input[type="text"], #form03 input[type="email"], #form03 input[type="tel"], #form03 input[type="number"], #form03 select, #form03 .file { 171 | background-color: #171A22; 172 | } 173 | 174 | #form04 input[type="text"], #form04 input[type="email"], #form04 input[type="tel"], #form04 input[type="number"], #form04 select, #form04 .file { 175 | background-color: #171A22; 176 | } 177 | 178 | #form05 input[type="text"], #form05 input[type="email"], #form05 input[type="password"], #form05 input[type="number"], #form05 select, #form05 .file { 179 | background-color: #171A22; 180 | } 181 | 182 | #form05 textarea { 183 | background-color: #171A22; 184 | } 185 | 186 | #form05 input[type="checkbox"] + label:before { 187 | background-color: #171A22; 188 | } 189 | 190 | #form06 input[type="text"], #form06 input[type="email"], #form06 input[type="tel"], #form06 input[type="number"], #form06 select, #form06 .file { 191 | background-color: #171A22; 192 | } 193 | 194 | #form07 input[type="text"], #form07 input[type="email"], #form07 input[type="tel"], #form07 input[type="number"], #form07 select, #form07 .file { 195 | background-color: #171A22; 196 | } 197 | 198 | #form07 textarea { 199 | background-color: #171A22; 200 | } 201 | 202 | #form07 input[type="checkbox"]:checked + label:before { 203 | background-color: #171A22; 204 | } 205 | 206 | #form08 input[type="text"], #form08 input[type="email"], #form08 input[type="tel"], #form08 input[type="number"], #form08 select, #form08 .file { 207 | background-color: #171A22; 208 | } 209 | 210 | .incident { 211 | background-color: #171A22; 212 | } 213 | 214 | /* 215 | _ _ ____ ____ ____ 216 | | | | |_ _ _ __ ___ _ __ ____ / ___/ ___/ ___| 217 | | |_| | | | | '_ \ / _ \ '__|_ / | | \___ \___ \ 218 | | _ | |_| | |_) | __/ | / / | |___ ___) |__) | 219 | |_| |_|\__, | .__/ \___|_| /___| \____|____/____/ 220 | |___/|_| 221 | */ -------------------------------------------------------------------------------- /FaxStore/hyperz-faxstore.css: -------------------------------------------------------------------------------- 1 | #container01, #form01-search-website { 2 | background-color: #171A22 !important; 3 | } 4 | 5 | #form01 button, 6 | #form02 button, 7 | #form03 button, 8 | #form04 button, 9 | #form05 button, 10 | #form06 button, 11 | #form07 button, 12 | #form08 button, 13 | #form09 button, 14 | #form10 button, 15 | #form11 button, 16 | #form12 button, 17 | #form13 button, 18 | #form14 button, 19 | #form15 button, 20 | #form16 button, 21 | #form17 button, 22 | #form18 button, 23 | #form19 button, 24 | #form20 button { 25 | background-color: #171A22; 26 | transition: background-color 0.3s ease-in-out; 27 | } 28 | 29 | #form01 button:hover, 30 | #form02 button:hover, 31 | #form03 button:hover, 32 | #form04 button:hover, 33 | #form05 button:hover, 34 | #form06 button:hover, 35 | #form07 button:hover, 36 | #form08 button:hover, 37 | #form11 button:hover, 38 | #form12 button:hover, 39 | #form14 button:hover, 40 | #form15 button:hover, 41 | #form16 button:hover, 42 | #form17 button:hover, 43 | #form18 button:hover, 44 | #form13 button:hover, 45 | #form09 button:hover, 46 | #form10 button:hover, 47 | #form19 button:hover, 48 | #form20 button:hover { 49 | background-color: rgba(0, 153, 255, 0.8); 50 | } 51 | 52 | #form03 input[type="text"], #form03 input[type="email"], #form03 textarea, #form03 select, #form03 .file { 53 | color: #FFFFFF; 54 | background-color: #171A22; 55 | } 56 | 57 | .file:after { 58 | width: 1.4rem; 59 | height: 1.4rem; 60 | line-height: 1.4rem; 61 | background-size: 0.7rem; 62 | border-radius: 0.08rem; 63 | background-color: #0099ff !important; 64 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M36.1,22.7l-5.7,7.1c-0.3,0.4-0.8,0.7-1.4,1c-0.6,0.3-1.2,0.4-1.7,0.4H6.2c-0.7,0-1-0.2-1-0.7c0-0.2,0.1-0.5,0.4-0.8 l5.7-7.1c0.3-0.4,0.8-0.7,1.4-1c0.6-0.3,1.1-0.4,1.7-0.4h21.2c0.7,0,1,0.2,1,0.7C36.5,22.1,36.4,22.4,36.1,22.7z M11.6,19.4 c-0.9,0.4-1.7,1-2.3,1.7l-5,6.1V10.7c0-0.5,0.2-1,0.5-1.3C5.2,9,5.7,8.8,6.2,8.8h6.2c0.5,0,1,0.2,1.3,0.5c0.4,0.4,0.5,0.8,0.5,1.3 v1.2c0,0.5,0.2,1,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h11.2c0.5,0,1,0.2,1.3,0.5c0.4,0.4,0.5,0.8,0.5,1.3v3.1H14.3 C13.4,18.8,12.5,19,11.6,19.4z M38.7,20.6c-0.3-0.6-0.7-1.1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5h-3.7v-3.1c0-1.2-0.4-2.2-1.3-3.1 s-1.9-1.3-3.1-1.3H16.8v-0.6c0-1.2-0.4-2.2-1.3-3.1c-0.9-0.9-1.9-1.3-3.1-1.3H6.2C5,6.3,4,6.7,3.1,7.6s-1.3,1.9-1.3,3.1v18.7 c0,1.2,0.4,2.2,1.3,3.1s1.9,1.3,3.1,1.3h21.2c0.9,0,1.8-0.2,2.7-0.7c0.9-0.4,1.7-1,2.3-1.7l5.7-7.1c0.6-0.8,0.9-1.5,0.9-2.3 C39,21.5,38.9,21,38.7,20.6z' fill='rgba(255,255,255,1)' /%3E%3C/svg%3E") !important; 65 | bottom: 0.175rem; 66 | right: 0.175rem; 67 | } 68 | 69 | #form10 select { 70 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%230099ff' /%3E%3C/svg%3E"); 71 | background-position: calc(100% - 0.6125rem) center; 72 | padding-right: 2.0625rem; 73 | } 74 | 75 | #buttons12 .button { 76 | background-color: #171A22 !important; 77 | transition: background-color 0.3s ease-in-out !important; 78 | } 79 | 80 | #buttons12 .button:hover { 81 | background-color: #0C1017 !important; 82 | } 83 | 84 | #container15 #buttons05 li a { 85 | background-color: #171A22 !important; 86 | transition: background-color 0.3s ease-in-out !important; 87 | } 88 | 89 | #container15 #buttons05 li a:hover { 90 | background-color: #0C1017 !important; 91 | } 92 | 93 | #user-section #buttons10 li .n01 { 94 | background-color: #171A22 !important; 95 | transition: background-color 0.3s ease-in-out !important; 96 | } 97 | 98 | #user-section #buttons10 li .n01:hover { 99 | background-color: rgba(0, 153, 255, 0.8) !important; 100 | } 101 | 102 | #reviews-section #container24 div .convertPara .convertPara { 103 | color: white; 104 | transition: color 0.1s ease-in-out !important; 105 | } 106 | 107 | #reviews-section #container24 .wrapper .inner div .convertPara a:hover { 108 | color: #0099ff !important; 109 | } 110 | 111 | #reviews-section #container24 div .convertPara .convertPara:hover { 112 | color: #171A22 !important; 113 | } 114 | 115 | #reviews-section #buttons10 li .n01 { 116 | background-color: #171A22 !important; 117 | transition: background-color 0.3s ease-in-out !important; 118 | } 119 | 120 | #reviews-section #buttons10 li .n01:hover, #buttons06 .n02:hover { 121 | background-color: rgba(0, 153, 255, 0.8) !important; 122 | } 123 | 124 | #form08 input[type="text"], #form08 input[type="email"], #form08 textarea, #form08 select, #form08 .file { 125 | background-color: #171A22 !important; 126 | } 127 | 128 | #buttons10 .n01, #store-section .n01, #buttons09 .n01, #buttons09 .n02, #buttons06 .n01 { 129 | background-color: #171A22 !important; 130 | transition: background-color 0.3s ease-in-out !important; 131 | } 132 | 133 | #buttons10 .n01:hover, #store-section .n01:hover, #buttons09 .n01:hover, #buttons09 .n02:hover, #buttons06 .n01:hover { 134 | background-color: #1f232e !important; 135 | } 136 | 137 | #buttons10 .n02, #store-section .n02, #buttons08 .n02, #buttons09 .n03, #buttons15 .n02, #buttons06 .n02 { 138 | background-color: #171A22 !important; 139 | transition: background-color 0.3s ease-in-out !important; 140 | } 141 | 142 | #buttons10 .n02:hover, #store-section .n02:hover, #buttons08 .n02:hover, #buttons09 .n03:hover, #buttons15 .n02:hover { 143 | background-color: rgba(0, 153, 255, 0.8) !important; 144 | } 145 | 146 | #form10 input[type="text"], #form10 input[type="email"], #form10 textarea, #form10 select, #form10 .file { 147 | color: #FFFFFF; 148 | background-color: #171A22; 149 | } 150 | 151 | #container04 #buttons03 .n03:hover { 152 | background-color: rgba(0, 138, 212, 0.5) !important; 153 | } 154 | 155 | #container04 #buttons03 .n04:hover { 156 | background-color: rgba(212, 0, 0, 0.2) !important; 157 | } 158 | 159 | #container24 .wrapper .inner div #buttons08 .n01 { 160 | background-color: rgba(212, 0, 0, 0.5) !important; 161 | transition: background-color 0.3s ease-in-out !important; 162 | } 163 | 164 | #container24 .wrapper .inner div #buttons08 .n01:hover { 165 | background-color: rgba(131, 0, 0, 0.5) !important; 166 | } 167 | 168 | .stripeButton { 169 | background-color: rgba(0, 153, 255, 0.8) !important; 170 | transition: background-color 0.3s ease-in-out !important; 171 | } 172 | 173 | .stripeButton:hover { 174 | background-color: rgba(41,41,41,0.5) !important; 175 | } 176 | 177 | #form04 button { 178 | background-color: rgba(0, 153, 255, 0.8); 179 | transition: background-color 0.3s ease-in-out !important; 180 | } 181 | 182 | #form04 button:hover { 183 | background-color: rgba(41,41,41,0.31) !important; 184 | } 185 | 186 | #table13 a { 187 | color: #0099ff; 188 | text-decoration: none; 189 | } 190 | 191 | .userPageRows { 192 | background-color: #171A22; 193 | } 194 | 195 | #form13 input[type="checkbox"] + label:before { 196 | background-color: #171A22 !important; 197 | } 198 | 199 | .userNotes, 200 | #form13-comment, 201 | #form09-name, 202 | #fileInput-One, 203 | #form13-site-name, 204 | #form13-on-sale, 205 | #form13-accent-color-hex-color, 206 | #form13-site-description, 207 | #form13-credits, 208 | #form13-gallery, 209 | #form13-lic-system, 210 | #form13-linked, 211 | #form13-inaccount, 212 | #fileInput-One, 213 | #form13-discord-role, 214 | #form13price, 215 | #form13-discordRole, 216 | #form13-secPayeePayPal, 217 | #form13-secPayeeStripe, 218 | #form13-themes, 219 | #fileInput, 220 | #searchBox, 221 | #form13-demo { 222 | background-color: #171A22 !important; 223 | } 224 | 225 | #form13 input[type="text"], #form13 input[type="email"], #form13 input[type="number"], #form13 textarea, #form13 select, #form13 input[type="password"], #form13 .file { 226 | color: #FFFFFF; 227 | background-color: #171A22 !important; 228 | } 229 | 230 | #form11 input[type="text"], #form11 input[type="email"], #form11 textarea, #form11 select, #form11 .file { 231 | color: #FFFFFF; 232 | background-color: #171A22 !important; 233 | } 234 | 235 | #form04 input[type="checkbox"] + label:before { 236 | background-color: #171A22 !important; 237 | } 238 | 239 | #form09 input[type="text"], #form09 input[type="email"], #form09 textarea, #form09 select, #form09 .file { 240 | color: #FFFFFF; 241 | background-color: #171A22 !important; 242 | } 243 | 244 | #form05 input[type="text"], #form05 input[type="email"], #form05 textarea, #form05 select, #form05 .file { 245 | color: #FFFFFF; 246 | background-color: #171A22 !important; 247 | } 248 | 249 | #form17 input[type="text"], #form17 input[type="email"], #form17 textarea, #form17 select, #form17 .file { 250 | color: #FFFFFF; 251 | background-color: #171A22 !important; 252 | } #text91::after { content: "\A | Theme by Hyperz#0001" !important; } 253 | 254 | #form14 input[type="text"], #form14 input[type="email"], #form14 textarea, #form14 select, #form14 .file { 255 | color: #FFFFFF; 256 | background-color: #171A22 !important; 257 | } 258 | 259 | #form09 input[type="text"], #form09 input[type="email"], #form09 textarea, #form09 select, #form09 .file { 260 | color: #FFFFFF; 261 | background-color: #171A22 !important; 262 | } 263 | 264 | #form12 input[type="text"], #form12 input[type="email"], #form12 textarea, #form12 select, #form12 .file { 265 | color: #FFFFFF; 266 | background-color: #171A22 !important; 267 | } 268 | 269 | #form04 input[type="text"], #form04 input[type="email"], #form04 textarea, #form04 select, #form04 .file { 270 | color: #FFFFFF; 271 | background-color: #171A22 !important; 272 | } 273 | 274 | #form16 input[type="text"], #form16 input[type="email"], #form16 textarea, #form16 select, #form16 .file { 275 | color: #FFFFFF; 276 | background-color: #171A22 !important; 277 | } 278 | 279 | #form19 input[type="text"], #form19 input[type="email"], #form19 textarea, #form19 select, #form19 .file { 280 | color: #FFFFFF; 281 | background-color: #171A22 !important; 282 | } 283 | 284 | #form19 input[type="text"], #form19 input[type="email"], #form19 textarea, #form19 select, #form19 .file { 285 | color: #FFFFFF; 286 | background-color: #171A22 !important; 287 | } 288 | 289 | #form06 input[type="text"], #form06 input[type="email"], #form06 textarea, #form06 select, #form06 .file { 290 | color: #FFFFFF; 291 | background-color: #171A22 !important; 292 | } 293 | 294 | #form20 input[type="text"], #form20 input[type="email"], #form20 textarea, #form20 select, #form20 .file { 295 | color: #FFFFFF; 296 | background-color: #171A22 !important; 297 | } 298 | 299 | #form20 input[type="checkbox"] + label:before { 300 | border-radius: 0.125rem; 301 | color: #FFFFFF; 302 | background-color: #171A22 !important; 303 | width: 1.21875rem; 304 | height: 1.21875rem; 305 | margin-right: 0.875rem; 306 | background-size: 0.690625rem; 307 | } 308 | 309 | #form02 input[type="text"], #form02 input[type="email"], #form02 textarea, #form02 select, #form02 .file { 310 | color: #FFFFFF; 311 | background-color: #171A22 !important; 312 | } 313 | 314 | #table11 tr td a { 315 | color: #0099ff !important; 316 | } 317 | 318 | .modal-content { 319 | background-color: #0C1017 !important; 320 | border-color: #171A22 !important; 321 | } 322 | 323 | #slideshow01 .bg { 324 | background-color: #0C1017 !important; 325 | } 326 | 327 | #container19 .wrapper .inner div #buttons09 li .n01, 328 | #container21 .wrapper .inner div #buttons10 li .clickhover { 329 | background-color: #171A22 !important; 330 | } 331 | 332 | #container19 .wrapper .inner div #buttons09 li .n01:hover, 333 | #container21 .wrapper .inner div #buttons10 li .clickhover:hover { 334 | background-color: #0099ff !important; 335 | } 336 | 337 | #table13 .table-inner, 338 | #table05 .table-inner, 339 | #table06 .table-inner, 340 | #table07 .table-inner, 341 | #table09 .table-inner, 342 | #table01 .table-inner, 343 | #table12 .table-inner, 344 | #gallery01 .inner, 345 | #table11 .table-inner { 346 | background-color: #171A22 !important; 347 | border-radius: 0.4em; 348 | padding: 1em; 349 | } 350 | 351 | #image04, #image09 { 352 | background-color: #171A22 !important; 353 | padding: 0.6em; 354 | border-radius: 0.4em; 355 | } 356 | 357 | #form09 .inner { 358 | margin-left: auto !important; 359 | margin-right: auto !important; 360 | } 361 | 362 | #cookieBar { 363 | background-color: #171A22 !important; 364 | } 365 | 366 | #buttons01 .dropdown .dropdown-content a, #buttons03 .dropdown .dropdown-content a { 367 | background-color: #171A22 !important; 368 | } 369 | 370 | #buttons01 .dropdown .dropdown-content a:hover, #buttons03 .dropdown .dropdown-content a:hover { 371 | background-color: #212530 !important; 372 | } 373 | 374 | .releaseCollapseButton { 375 | background-color: #171A22 !important; 376 | } 377 | 378 | #storestatbox { 379 | background-color: #171A22; 380 | border-color: #5f5f5f; 381 | border-style: solid; 382 | border-width: 4px; 383 | } 384 | 385 | /* 386 | _ _ ____ ____ ____ 387 | | | | |_ _ _ __ ___ _ __ ____ / ___/ ___/ ___| 388 | | |_| | | | | '_ \ / _ \ '__|_ / | | \___ \___ \ 389 | | _ | |_| | |_) | __/ | / / | |___ ___) |__) | 390 | |_| |_|\__, | .__/ \___|_| /___| \____|____/____/ 391 | |___/|_| 392 | */ --------------------------------------------------------------------------------