diff --git a/reworked/assets/discord.svg b/reworked/assets/discord.svg deleted file mode 100644 index 6fd9e78..0000000 --- a/reworked/assets/discord.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/reworked/assets/favicon.ico b/reworked/assets/favicon.ico deleted file mode 100644 index 6d561b4..0000000 Binary files a/reworked/assets/favicon.ico and /dev/null differ diff --git a/reworked/assets/github-mark-white.svg b/reworked/assets/github-mark-white.svg deleted file mode 100644 index d5e6491..0000000 --- a/reworked/assets/github-mark-white.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/reworked/assets/github-mark.svg b/reworked/assets/github-mark.svg deleted file mode 100644 index 37fa923..0000000 --- a/reworked/assets/github-mark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/reworked/assets/style.css b/reworked/assets/style.css deleted file mode 100644 index af506fb..0000000 --- a/reworked/assets/style.css +++ /dev/null @@ -1,152 +0,0 @@ -/* Общая характеристика */ -body { - background-color: #242829; -} - -/* Заморочная настройка переключателей */ -.Select { - background-color: rgb(27, 29, 30); - color: #fff; - font-family: 'Mulish', sans-serif; - font-size: 2vh; -} -.Select-input > input { - color: #fff; -} -.Select .Select-value { - background-color: rgb(27, 29, 30); -} -.Select-control { - background-color: rgb(25, 25, 25) !important; - color: #fff; - font-family: 'Mulish', sans-serif; - font-size: 2vh; -} -.Select-menu-outer { - background-color: rgb(27, 29, 30); - color: #fff; - border-radius: 10; -} -.has-value.Select--single>.Select-control .Select-value .Select-value-label, .has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label{ - color: white; -} - -.Select-value { - font-family: 'Mulish', sans-serif; - font-size: 2vh; -} -.Select-placeholder { - font-family: 'Mulish', sans-serif; - font-size: 2vh; -} - -.Select-clear { - font-size: 30px; -} - - -/* Верхняя панель */ -.panel { - background-color: #161819; - margin: -8px; - display: flex; - flex-direction: row; - justify-content: flex-start; -} - -.logo { - padding: 10px; - width: 4vh;0 -} -.git_logo { - width: 3.2vh; -} -.soc_logo { - width: 3.2vh; - filter: brightness(0) invert(1); -} - -.react_vol_out { - padding-top: 10vh; - width: 80vh; -} - -.react_vol { - display: flex; - flexDirection: row; -} -.vol { - flex: 1; - padding-left: 25px; - min-width: 100px; -} - -/* Иконка + текст слева в панели */ -.img_text_panel { - display: flex; - flex-wrap: wrap; - align-items: center; - flex: 1; -} - -/* Кнопки социалок */ -.soc_buttons { - display: flex; - flex-wrap: wrap; - align-items: center; - flex: 1; - justify-content: center; - gap: 10px; -} - - -/* Div для социалок */ -.socials { - background-color: #2e4ebf; - border-radius: 15px; - display: flex; - flex-direction: row; - padding-left: 1%; - padding-right: 4%; - align-items: center; -/* height: 60%; */ - height: 4vh; - max-height: 35px; -} -/* Текст социалок */ -.soc_text { - color: white; - padding-left: 8%; - font-size: 1.6vh; - font-family: 'Mulish', sans-serif; -} - -.empty_box { - flex: 1; -} - -/* Отключить декорацию всего (сделано для убирания подчёркивания ссылок) */ -a { - text-decoration: none; -} - - -/* Действия при разрешении телефона */ -@media (max-width: 900px) { - - .empty_box { - flex: 0; - } - .soc_buttons { - justify-content: right; - } - -} -/* Сверхузкие телефоны */ -@media (max-width: 400px) { - .react_vol { - flex-direction: column; - } - .vol { - padding-top: 8px; -} diff --git a/reworked/assets/telegram.svg b/reworked/assets/telegram.svg deleted file mode 100644 index 80317a6..0000000 --- a/reworked/assets/telegram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/reworked/requirements.txt b/reworked/requirements.txt index 8b13789..8ab6294 100644 --- a/reworked/requirements.txt +++ b/reworked/requirements.txt @@ -1 +1 @@ - +flask \ No newline at end of file diff --git a/reworked/schemes/full.drawio b/reworked/schemes/full.drawio new file mode 100644 index 0000000..c9c7e66 --- /dev/null +++ b/reworked/schemes/full.drawio @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/reworked/site.py b/reworked/site.py new file mode 100644 index 0000000..8640dde --- /dev/null +++ b/reworked/site.py @@ -0,0 +1,9 @@ +from flask import Flask, render_template +app = Flask(__name__) + +@app.route("/") +def main(): + return render_template("index.html") + +if __name__ == '__main__': + app.run(debug=False, port = 5001) diff --git a/reworked/templates/index.html b/reworked/templates/index.html new file mode 100644 index 0000000..8097914 --- /dev/null +++ b/reworked/templates/index.html @@ -0,0 +1,67 @@ + + + + + + SS14Tools + + + + + + +
+
+
+
+ +
+
+ +
+
+
+
+ + + \ No newline at end of file