fix unclickable youtube links
This commit is contained in:
parent
7791fa2ab4
commit
51b2ef43bc
2 changed files with 16 additions and 3 deletions
|
@ -483,6 +483,16 @@ hr {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.video_title a {
|
||||||
|
color: var(--link);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video_title a:hover {
|
||||||
|
color: var(--link);
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.video-results-margin {
|
.video-results-margin {
|
||||||
margin-bottom: 0px !important;
|
margin-bottom: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,12 +51,15 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="video__results">
|
<div class="video__results">
|
||||||
<div class="video__img__results">
|
<div class="video__img__results">
|
||||||
<a href="{{ .Href }}"> <img src="{{ .Image }}">
|
<a href="{{ .Href }}">
|
||||||
|
<img src="{{ .Image }}">
|
||||||
<div class="duration">{{ .Duration }}</div>
|
<div class="duration">{{ .Duration }}</div>
|
||||||
</img></a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="results video-results-margin">
|
<div class="results video-results-margin">
|
||||||
<h3 class="video_title" href="{{ .Href }}">{{ .Title }}</h3></a>
|
<h3 class="video_title">
|
||||||
|
<a href="{{ .Href }}">{{ .Title }}</a>
|
||||||
|
</h3>
|
||||||
<p class="stats">{{ .Views }} <span class="pipe">|</span> {{ .Date }}</p>
|
<p class="stats">{{ .Views }} <span class="pipe">|</span> {{ .Date }}</p>
|
||||||
<p class="publish__info">YouTube <span class="pipe">|</span> {{ .Creator }}</p>
|
<p class="publish__info">YouTube <span class="pipe">|</span> {{ .Creator }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue