mirror of
https://github.com/ReviveMii/revivetube
synced 2025-04-29 12:39:25 -04:00
.
This commit is contained in:
parent
c3cea7e1be
commit
f3d7333503
1 changed files with 23 additions and 7 deletions
|
@ -24,6 +24,7 @@
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.logo {
|
.logo {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
|
@ -71,6 +72,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.channel-logo {
|
.channel-logo {
|
||||||
width: 36px;
|
width: 36px;
|
||||||
|
@ -97,6 +99,26 @@
|
||||||
.video-container:hover {
|
.video-container:hover {
|
||||||
border: 1px solid #0f0f0f;
|
border: 1px solid #0f0f0f;
|
||||||
}
|
}
|
||||||
|
.comments-section {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
.comment {
|
||||||
|
background-color: #222;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 10px 0;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
.comment-author {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #3ea6ff;
|
||||||
|
}
|
||||||
|
.comment-text {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
.comment-likes {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -106,12 +128,6 @@
|
||||||
<img src="../favicon.ico" alt="Logo">
|
<img src="../favicon.ico" alt="Logo">
|
||||||
<span>ReviveTube</span>
|
<span>ReviveTube</span>
|
||||||
</a>
|
</a>
|
||||||
<div class="search-container">
|
|
||||||
<form action="/" method="get">
|
|
||||||
<input class="search-bar" name="query" placeholder="Search YouTube" type="text">
|
|
||||||
<input type="submit" class="search-button" value="Search">
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div id="videooutline">
|
<div id="videooutline">
|
||||||
|
@ -154,4 +170,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue