mirror of
https://github.com/danielbrendel/hortusfox-web.git
synced 2026-05-07 06:09:58 -05:00
Link to own video resource
This commit is contained in:
@@ -24,7 +24,6 @@ APP_GITHUB_SPONSOR="https://github.com/sponsors/danielbrendel"
|
||||
APP_DONATION_KOFI="https://ko-fi.com/danielbrendel"
|
||||
APP_SOCIAL_DISCORD="https://discord.gg/kc6xGmjzVS"
|
||||
APP_SOCIAL_MASTODON="https://mastodon.social/@hortusfox"
|
||||
APP_SOCIAL_YOUTUBE="https://www.youtube.com/@HortusFox"
|
||||
|
||||
# Session
|
||||
SESSION_ENABLE=true
|
||||
|
||||
@@ -22,7 +22,6 @@ APP_GITHUB_SPONSOR="https://github.com/sponsors/danielbrendel"
|
||||
APP_DONATION_KOFI="https://ko-fi.com/danielbrendel"
|
||||
APP_SOCIAL_DISCORD="https://discord.gg/kc6xGmjzVS"
|
||||
APP_SOCIAL_MASTODON="https://mastodon.social/@hortusfox"
|
||||
APP_SOCIAL_YOUTUBE="https://www.youtube.com/@HortusFox"
|
||||
|
||||
# Session
|
||||
SESSION_ENABLE=true
|
||||
|
||||
@@ -20,9 +20,10 @@
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://discord.gg/kc6xGmjzVS"><img src="https://img.shields.io/badge/discord-5715BA?style=for-the-badge&logo=discord&logoColor=white" alt="social-discord"></a>
|
||||
<a href="https://mastodon.social/@hortusfox"><img src="https://img.shields.io/badge/mastodon-D1550A?style=for-the-badge&logo=mastodon&logoColor=white" alt="social-mastodon"></a>
|
||||
<a href="https://www.youtube.com/@HortusFox"><img src="https://img.shields.io/badge/youtube-red?style=for-the-badge&logo=youtube&logoColor=white" alt="social-youtube"></a>
|
||||
<a href="https://discord.gg/kc6xGmjzVS"><img src="https://img.shields.io/badge/discord-5715BA?style=for-the-badge&logoColor=white" alt="discord"></a>
|
||||
<a href="https://mastodon.social/@hortusfox"><img src="https://img.shields.io/badge/mastodon-D1550A?style=for-the-badge&logoColor=white" alt="mastodon"></a>
|
||||
<a href="https://www.hortusfox.com/videos"><img src="https://img.shields.io/badge/videos-red?style=for-the-badge&logoColor=white" alt="videos"></a>
|
||||
<a href="https://www.hortusfox.com/faq"><img src="https://img.shields.io/badge/faq-yellow?style=for-the-badge&logoColor=white" alt="faq"></a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
|
||||
@@ -3365,17 +3365,56 @@ fieldset .field {
|
||||
position: relative;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 35px;
|
||||
@media screen and (max-width: 495px) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.admin-info-social img {
|
||||
.admin-info-social-button {
|
||||
width: 152px;
|
||||
height: 35px;
|
||||
@media screen and (max-width: 495px) {
|
||||
width: 32%;
|
||||
height: 30px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.is-social-discord {
|
||||
background-color: rgb(87, 20, 185);
|
||||
border-color: rgb(87, 20, 185);
|
||||
color: rgb(250, 250, 250);
|
||||
}
|
||||
|
||||
.is-social-discord:hover {
|
||||
background-color: rgb(105, 45, 195);
|
||||
border-color: rgb(105, 45, 195);
|
||||
color: rgb(250, 250, 250);
|
||||
}
|
||||
|
||||
.is-social-mastodon {
|
||||
background-color: rgb(205, 85, 10);
|
||||
border-color: rgb(205, 85, 10);
|
||||
color: rgb(250, 250, 250);
|
||||
}
|
||||
|
||||
.is-social-mastodon:hover {
|
||||
background-color: rgb(202, 100, 35);
|
||||
border-color: rgb(202, 100, 35);
|
||||
color: rgb(250, 250, 250);
|
||||
}
|
||||
|
||||
.is-social-videos {
|
||||
background-color: rgb(225, 93, 68);
|
||||
border-color: rgb(225, 93, 68);
|
||||
color: rgb(250, 250, 250);
|
||||
}
|
||||
|
||||
.is-social-videos:hover {
|
||||
background-color: rgb(225, 111, 87);
|
||||
border-color: rgb(225, 111, 87);
|
||||
color: rgb(250, 250, 250);
|
||||
}
|
||||
|
||||
.admin-info-extensions {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
+4
-4
@@ -981,15 +981,15 @@
|
||||
|
||||
<div class="admin-info-social">
|
||||
@if (env('APP_SOCIAL_DISCORD'))
|
||||
<a href="{{ env('APP_SOCIAL_DISCORD') }}" target="_blank"><img src="https://img.shields.io/badge/discord-5715BA?style=for-the-badge&logo=discord&logoColor=white" alt="social-discord"></a>
|
||||
<a class="button admin-info-social-button is-social-discord" href="{{ env('APP_SOCIAL_DISCORD') }}" target="_blank"><i class="fab fa-discord"></i> Discord</a>
|
||||
@endif
|
||||
|
||||
@if (env('APP_SOCIAL_MASTODON'))
|
||||
<a href="{{ env('APP_SOCIAL_MASTODON') }}" target="_blank"><img src="https://img.shields.io/badge/mastodon-D1550A?style=for-the-badge&logo=mastodon&logoColor=white" alt="social-mastodon"></a>
|
||||
<a class="button admin-info-social-button is-social-mastodon" href="{{ env('APP_SOCIAL_MASTODON') }}" target="_blank"><i class="fab fa-mastodon"></i> Mastodon</a>
|
||||
@endif
|
||||
|
||||
@if (env('APP_SOCIAL_YOUTUBE'))
|
||||
<a href="{{ env('APP_SOCIAL_YOUTUBE') }}" target="_blank"><img src="https://img.shields.io/badge/youtube-red?style=for-the-badge&logo=youtube&logoColor=white" alt="social-youtube"></a>
|
||||
@if (env('APP_SERVICE_URL'))
|
||||
<a class="button admin-info-social-button is-social-videos" href="{{ env('APP_SERVICE_URL') }}/videos" target="_blank"><i class="fas fa-play-circle"></i> Videos</a>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
|
||||
@@ -84,7 +84,6 @@ create_environment_file() {
|
||||
APP_SERVICE_URL="https://www.hortusfox.com"
|
||||
APP_SOCIAL_DISCORD="https://discord.gg/kc6xGmjzVS"
|
||||
APP_SOCIAL_MASTODON="https://mastodon.social/@hortusfox"
|
||||
APP_SOCIAL_YOUTUBE="https://www.youtube.com/@HortusFox"
|
||||
|
||||
# Session
|
||||
SESSION_ENABLE=true
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user