поменял название зависимости

This commit is contained in:
Vladislav Ostapov 2024-10-30 11:27:26 +03:00
parent 839198820e
commit 815a081a4c
13 changed files with 81 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
.idea/
cmake-build-*
cert.pem
key.pem
dh.pem

View File

@ -17,7 +17,7 @@ endif()
add_compile_options(-Wall -Wextra -Wsign-conversion)
add_subdirectory(dependencies/control_system-dvbs-2)
add_subdirectory(dependencies/control_system)
add_executable(terminal-web-server
src/server/mime_types.hpp

View File

@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
@ -14,7 +15,7 @@
<div id="status-header"></div>
<!-- Версия для разработки включает в себя возможность вывода в консоль полезных уведомлений -->
<script src="js/vue.js"></script>
<script src="/js/vue.js"></script>
<script>
const app = new Vue({
el: '#app',

View File

@ -0,0 +1,75 @@
:root {
--text: #000;
--bg: #fff;
--item_bg: rgb(248, 246, 243);
--second_text: #6e6d6d;
}
@media (prefers-color-scheme: dark) {
:root {
--text: #fff;
--bg: #222226;
--item_bg: #333336;
--second_text: #828282;
}
}
html {
padding: 10px;
}
body {
display: flex;
flex-direction: column;
font-family: 'Roboto', sans-serif;
font-size: 16px;
align-items: center;
justify-content: center;
background-color: var(--bg);
color: var(--text);
}
a {
text-decoration: none;
background-color: var(--bg);
color: var(--text);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: var(--bg);
color: var(--text);
}
.title {
text-align: center;
}
.item {
padding: 20px;
width: 400px;
color: var(--text);
background-color: var(--item_bg);
border-bottom: 1px solid var(--text);
}
.item_title {
font-weight: 600;
text-align: center;
}
.item_status {
text-align: end;
font-weight: 300;
color: var(--second_text);
}
.item_icon {
width: 25px;
}