commit faa8d61b7182b7b8eeed7ea7337d7d6d7cc753ca Author: themaster1970sf <107542393+themaster1970sf@users.noreply.github.com> Date: Mon May 4 21:46:47 2026 +0300 Add files via upload diff --git a/awesomium_global.css b/awesomium_global.css new file mode 100644 index 0000000..d6637f2 --- /dev/null +++ b/awesomium_global.css @@ -0,0 +1,93 @@ + +/* Makes Checkboxes and Radio buttons in Awesomium look like the ones in CEF/Chrome */ + +input[ type="checkbox" ] +{ + -webkit-appearance: none; + background-repeat: no-repeat; + background-size: contain; + background-color: #fff; + border: 1px solid #767676; + border-radius: 2px; + + /* Default values */ + width: 13px; + height: 13px; + margin: 3px 3px 0px 4px; +} +input[ type="checkbox" ]:hover +{ + border-color: #4F4F4F; +} +input[ type="checkbox" ]:checked +{ + background-color: #0075FF; + border-color: #0075FF; + background-image: url("data:image/svg+xml;utf8,"); +} +input[ type="checkbox" ]:checked:hover +{ + background-color: #005CC8; + border-color: #005CC8; +} + +input[ type="checkbox" ]:active +{ + background-color: #3793FF; + border-color: #3793FF; +} +input[ type="checkbox" ]:disabled +{ + background-color: #F7F7F7; + border-color: #D0D0D0; +} +input[ type="checkbox" ]:disabled:checked +{ + background-color: #D0D0D0; + border-color: #D0D0D0; +} + +/* Radio buttons */ +input[ type="radio" ] +{ + -webkit-appearance: none; + background-repeat: no-repeat; + background-size: contain; + background-color: #fff; + border: 1px solid #767676; + border-radius: 9999px; + + /* Default values */ + width: 13px; + height: 13px; + margin: 3px 3px 0px 5px; +} +input[ type="radio" ]:hover +{ + border-color: #4F4F4F; +} +input[ type="radio" ]:checked +{ + border-color: #0075FF; + background-image: url("data:image/svg+xml;utf8,"); +} +input[ type="radio" ]:checked:hover +{ + border-color: #005CC8; + background-image: url("data:image/svg+xml;utf8,"); +} + +input[ type="radio" ]:active +{ + border-color: #A2A2A2; +} +input[ type="radio" ]:disabled +{ + background-color: #F3F3F3; + border-color: #CDCDCD; +} +input[ type="radio" ]:disabled:checked +{ + background-image: url("data:image/svg+xml;utf8,"); + border-color: #CDCDCD; +} diff --git a/download.png b/download.png new file mode 100644 index 0000000..559872c Binary files /dev/null and b/download.png differ diff --git a/dupes.html b/dupes.html new file mode 100644 index 0000000..b4f7670 --- /dev/null +++ b/dupes.html @@ -0,0 +1,89 @@ + + + + Creations + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ +
+ +
+ + + + diff --git a/loading.css b/loading.css new file mode 100644 index 0000000..0ef53d2 --- /dev/null +++ b/loading.css @@ -0,0 +1,154 @@ + +BODY +{ + overflow: hidden; + margin: 0px; + + background-position: center; + background-size: cover; +} + +#container +{ + position: absolute; + text-align: center; + left: 50%; + top: 45%; + margin-top: -120px; + margin-left: -150px; + width: 300px; +} + +#logo +{ + display: block; + margin-left: auto; + margin-right: auto; + margin-bottom: 1.25em; +} + +.progressbar +{ + margin: 0 auto; + width: 150px; + border-radius: 3px; + text-align: left; + padding: 1px; + background-color: rgba( 0, 0, 0, 0.6 ); + float: right; +} + +.progressbar .inner +{ + border-radius: 2px; + background-color: rgba( 0, 240, 0, 1.0 ); + width: 0.2%; + height: 11px; +} + +#progress_text +{ + position: absolute; + width: 500px; + right: 170px; + bottom: 0px; + margin: 0 auto; + text-align: right; + font-size: 12px; + font-family: helvetica; + color: rgba( 0, 0, 0, 0.4); + letter-spacing: -1px; + text-shadow: 0px 0px 3px white; + overflow: hidden; + white-space: nowrap; +} + +@-webkit-keyframes walk +{ + 0% + { + -webkit-transform: rotateZ(0deg); + } + + 100% + { + -webkit-transform: rotateZ(360deg); + } +} + +.walk +{ + -webkit-animation: walk 10s linear infinite; + text-align: center; + background-color: #fe7; + width: 24px; + height: 24px; + color: #999; + font-size: 16px; + font-family: arial, sans-serif; + font-weight: bold; + border-radius: 3px; + display: inline-block; + border: 2px solid #999; +} + +#spambox +{ + float: right; + overflow: hidden; + max-height: 100%; +} + +#background +{ + background-image: url( 'img/bg.png' ); + background-size: 100% 100%; + height: 100%; +} +body.dark #background +{ + background-image: url( 'img/bg_dark.png' ); +} +body.dark +{ + color: #fff; +} + +.server_info +{ + display: inline-block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + background-image: -webkit-linear-gradient( left, rgba( 0, 0, 0, 0.4 ) 0%, rgba( 0, 0, 0, 0.03 ) 75%, rgba( 0, 0, 0, 0 ) 100% ); + padding: 20px; + padding-right: 180px; + visibility: hidden; + white-space: nowrap; + max-width: 100%; + box-sizing: border-box; +} +.server_info.visible +{ + visibility: visible; +} +.server_info .text +{ + display: inline-block; + vertical-align: top; + max-width: 100%; + + line-height: 42px; + font-size: xx-large; +} +.server_info .text > div +{ + text-overflow: ellipsis; + overflow: hidden; +} +.server_info #mapimg +{ + width: 128px; + height: 128px; + background: #666; + margin-right: 16px; + float: left; +} \ No newline at end of file diff --git a/loading.html b/loading.html new file mode 100644 index 0000000..7fad73c --- /dev/null +++ b/loading.html @@ -0,0 +1,678 @@ + + + Underground RP — Загрузка... + + + + + +
+
+
+ + +
+
+
+
+
+ +
+ + +
+
+
+ +
+
+
UNDERGROUND RP
+
SECTOR Z — CLASSIFIED // DARKRP
+
+
+ +
+
+
+ BUNKER SYSTEMS: ONLINE +
+
+
+ SURFACE ALERT: ACTIVE +
+
+
+ --:--:-- +
+
+
+ + +
+ + +
+ +
+
Подключение к серверу...
+
MAP: —
+
GAMEMODE: —
+
+
+ + +
+
+ +
+
+
UNDERGROUND RP
+
ПОСТ-АПОКАЛИПСИС · БУНКЕР · ВЫЖИВАНИЕ
+
+ +
+ + +
+
+
+
ИНИЦИАЛИЗАЦИЯ СИСТЕМ БУНКЕРА...
+
0%
+
+
+
+
+
Подготовка соединения...
+
+ +
+
+ После апокалипсиса человечество разделилось. Одни укрылись в бункере — под защитой стали и бетона. Другие остались снаружи, в радиоактивных руинах — и выбрали путь борьбы. +
+
+
+
ИГРОКИ
+
+
+
+
РЕЖИМ
+
DARKRP
+
+
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/loading.png b/loading.png new file mode 100644 index 0000000..ac75656 Binary files /dev/null and b/loading.png differ diff --git a/loading1.html b/loading1.html new file mode 100644 index 0000000..3fd44d1 --- /dev/null +++ b/loading1.html @@ -0,0 +1,88 @@ + + + Loading.. + + + + +
+
+ + + +
+
:v
+
+ +
+ +
+ +
+
A really long server name will be here that will be too long to fit on the loading screen
+
gm_hilldirt
+
Snadbox
+
+
+ +
+
+ +
+ + + + + diff --git a/menu.html b/menu.html new file mode 100644 index 0000000..688f144 --- /dev/null +++ b/menu.html @@ -0,0 +1,145 @@ + + + + Garry's Mod Main Menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
You are on the {{Branch}} branch. Click here to find out more. ( {{Version}} )
+ +
+ +
+ + + + + + + + + + + + + diff --git a/saves.html b/saves.html new file mode 100644 index 0000000..ef401cf --- /dev/null +++ b/saves.html @@ -0,0 +1,89 @@ + + + + Creations + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ +
+ +
+ + + +