поменял название зависимости
This commit is contained in:
parent
839198820e
commit
815a081a4c
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
.idea/
|
||||
cmake-build-*
|
||||
|
||||
cert.pem
|
||||
key.pem
|
||||
dh.pem
|
||||
|
@ -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
|
||||
|
@ -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',
|
||||
|
@ -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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user