modified: index.js
modified: object.js modified: project.js new file: public/img/background/photo_2023-06-06_08-53-47 1.png new file: public/img/icon/copy.svg new file: public/img/icon/download.svg new file: public/img/icon/edit.svg new file: public/img/icon/save.svg new file: public/img/icon/trash.svg new file: public/img/new_proj.png new file: public/img/ok.svg new file: public/img/telegram.svg new file: public/img/vk.svg new file: public/img/youtube.svg new file: "public/img/\320\243\320\274\320\275\320\270\321\207\320\272\320\260 \320\273\320\276\320\263\320\276 \321\201 \320\276\320\261\320\262\320\276\320\264\320\272\320\276\320\271-02 1.png" modified: public/lib/fn.js modified: public/lib/inter.js modified: user.js modified: views/admin.ejs modified: views/header.ejs new file: views/load.ejs modified: views/login.ejs modified: views/main.ejs new file: views/old/project.ejs modified: views/project.ejs modified: views/static/end.ejs modified: views/static/start.ejs
This commit is contained in:
@ -1,3 +1,11 @@
|
||||
<% if (typeof soc !== 'undefined') {%>
|
||||
<div id="top_panel_right_sec" class="tpanel top_panel_right">
|
||||
<a href=""><img src="/img/vk.svg" alt=""></a>
|
||||
<a href=""><img src="/img/youtube.svg" alt=""></a>
|
||||
<a href=""><img src="/img/ok.svg" alt=""></a>
|
||||
<a href=""><img src="/img/telegram.svg" alt=""></a>
|
||||
</div>
|
||||
<%}%>
|
||||
</body>
|
||||
</html>
|
||||
<script>
|
||||
@ -15,6 +23,7 @@
|
||||
// e.preventDefault(); //This could also be return false as I'm using jQuery.
|
||||
// })
|
||||
$(window).focus(function(){
|
||||
console.log(document.title);
|
||||
if(document.title == "login"){
|
||||
// console.log(document.title);
|
||||
log_by_sid();
|
||||
@ -23,4 +32,5 @@
|
||||
// console.log("check");
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
@ -23,13 +23,35 @@
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
:root{
|
||||
--login-inp-w:30vw;
|
||||
--login-inp-h: 7.8vh;
|
||||
--main-font-size: 1.5vw;
|
||||
}
|
||||
.main{
|
||||
width: 80vw;
|
||||
width: 90vw;
|
||||
margin: auto;
|
||||
padding-block: 20px;
|
||||
}
|
||||
html{
|
||||
background-color:aliceblue;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
body{
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
*{
|
||||
font: "Circe Rounded";
|
||||
font-size: var(--main-font-size);
|
||||
font-weight:100;
|
||||
color: #3C3C3C;
|
||||
}
|
||||
@media (max-width: 900px) {
|
||||
:root{
|
||||
--main-font-size: 12px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
Reference in New Issue
Block a user