mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-22 20:10:40 +03:00
Merge branch 'main' of https://github.com/Akif9748/akf-forum
This commit is contained in:
commit
6c3fb4c93c
4 changed files with 10 additions and 2 deletions
|
@ -17,7 +17,7 @@ form {
|
||||||
display: block;
|
display: block;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #4c4c4c;
|
color: #4c4c4c;
|
||||||
width: 500px;
|
width: 100%;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
border: 2px solid #d9d9d9;
|
border: 2px solid #d9d9d9;
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,4 +199,8 @@ width: 120px;
|
||||||
.dots-menu.active{
|
.dots-menu.active{
|
||||||
display:flex;
|
display:flex;
|
||||||
}
|
}
|
||||||
|
.content{
|
||||||
|
width:50%;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,6 +97,7 @@
|
||||||
<form id="send" style="width:100%">
|
<form id="send" style="width:100%">
|
||||||
<textarea rows="4"
|
<textarea rows="4"
|
||||||
style="
|
style="
|
||||||
|
font-family:inherit;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
border: 2px solid #e3e3e3;" name="content"></textarea>
|
border: 2px solid #e3e3e3;" name="content"></textarea>
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
<%- include("extra/meta", {title: "Thread list!" }) %>
|
<%- include("extra/meta", {title: "Thread list!" }) %>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="/css/threads.css" />
|
<link rel="stylesheet" href="/css/threads.css" />
|
||||||
|
|
||||||
<%- include("extra/navbar") %>
|
<%- include("extra/navbar") %>
|
||||||
|
@ -17,6 +19,7 @@
|
||||||
<%= thread.title %>
|
<%= thread.title %>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-username">
|
<div class="box-username">
|
||||||
|
<a class="btn-danger"><i class="fa-solid fa-trash-can"></i></a>
|
||||||
<%= thread.author.name %> <div class="avatar"><img src="<%=thread.author.avatar %>"> </div>
|
<%= thread.author.name %> <div class="avatar"><img src="<%=thread.author.avatar %>"> </div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue