Add themes/pride/pride.css

This commit is contained in:
Julimiro 2024-07-27 12:32:39 -04:00
parent e699bc6f82
commit 7a33b2439e

247
themes/pride/pride.css Normal file
View file

@ -0,0 +1,247 @@
/*
Lite-Forum Pride colletion - LGBT / Pride
Copyright © 2024 Julimiro <https://julimiro.eu>
This theme uses design elements based on the Lite Forum platform, originally created by Anna.
Copyright © 2024 Anna <https://liteforum.knijn.one/>
This theme is licensed to be used and distributed along with the Lite-Forum platform
under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
See http://creativecommons.org/licenses/by-nc-sa/4.0/ for more details.
*/
:root {
--background-color: #1a1a1a;
--text-color: #ccc;
--button-background: #333;
--button-text-color: #ccc;
--button-hover-color: #555;
--link-color: #6c8f7d;
--link-hover-color: #90be6d;
--navbar-background: #333;
--dropdown-background: #222;
--dropdown-link-color: #ccc;
--dropdown-link-hover-background: #444;
--blockquote-background: #1a1a1a;
--blockquote-text-color: #999;
--thread-reply-background: #222;
--thread-reply-border-color: #444;
}
.reply-delete button {
background-color: #dc3545;
color: white;
border: none;
padding: 8px 15px;
font-size: 14px;
margin-bottom: 15px;
cursor: pointer;
border-radius: 3px;
}
.reply-delete button:hover {
background-color: #c82333;
}
.reply-share a {
background-color: var(--link-color);
color: white;
border: none;
padding: 10px 16px;
font-size: 14px;
cursor: pointer;
border-radius: 3px;
}
.reply-share a:hover {
background-color: var(--link-hover-color);
color: var(--text-color);
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
.navbar {
display: flex;
align-items: center;
}
@media only screen and (max-width: 900px) {
.search-container {
margin-left: auto;
max-width: 50%;
}
.search-container input[type="text"] {
padding: 5%;
margin: 0%;
width: auto;
}
.search-container button {
padding: 10px;
margin: 0 5px;
width: calc(35% - 20px);
min-width: 65px;
}
}
.search-container {
margin-left: auto;
max-width: 50%;
}
.search-container input[type="text"] {
padding: 10px;
margin: 0 5px;
width: 300px;
}
.search-container button {
padding: 10px;
margin: 0 5px;
width: calc(35% - 20px);
min-width: 65px;
}
.search-container form {
display: flex;
align-items: center;
}
.container {
max-width: 50vw;
margin: 1% auto;
}
@media only screen and (max-width: 768px) {
.container {
max-width: 100vw;
}
}
.userimg {
max-width: 100%;
height: auto;
}
.flex-container {
display: flex;
align-items: center;
}
.reply-info {
display: inline-block;
vertical-align: top;
margin-left: 1%;
}
.reply-info h1,
.reply-info h2,
.reply-info h3,
.reply-info h4,
.reply-info h5,
.reply-info h6 {
margin-top: 0;
margin-bottom: 0;
}
.reply-delete {
margin-left: auto;
}
.reply-link {
text-decoration: none;
color: black;
margin-left: 10px;
}
.reply-hr {
border: none;
height: 1px;
background-color: #ccc;
margin: 10px 0;
}
hr {
display: none;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
}
body {
font-family: Arial, sans-serif;
color: var(--text-color);
margin: 0;
padding: 0;
background-image: repeating-linear-gradient(to right,
#E50000, #E50000 30px,
#FF8D00 30px, #FF8D00 60px,
#FFEE00 60px, #FFEE00 90px,
#028121 90px, #028121 120px,
#004CFF 120px, #004CFF 150px,
#770088 150px , #770088 180px);
background-size: 100% 100%;
background-position: 0 0, 0 20px, 0 40px, 0 60px, 0 80px;
}
.btn,
button,
input[type="submit"],
a.btn, .button {
background-color: var(--button-background);
color: var(--button-text-color);
padding: 10px 20px;
text-decoration: none;
border: none;
cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
margin-right: 10px;
}
.btn:hover,
button:hover,
input[type="submit"]:hover,
a.btn:hover {
background-color: var(--button-hover-color);
}
.thread,
.reply {
background-color: var(--thread-reply-background);
border: 1px solid var(--thread-reply-border-color);
padding: 15px;
margin-bottom: 20px;
border-radius: 3px;
}
textarea,
input {
width: calc(100% - 20px);
margin-bottom: 20px;
background-color: var(--thread-reply-background);
color: var(--text-color);
border: 1px solid var(--thread-reply-border-color);
padding: 10px;
border-radius: 3px;
}
blockquote {
background-color: var(--blockquote-background);
color: var(--blockquote-text-color);
padding: 10px;
margin: 0;
border-left: 3px solid var(--thread-reply-border-color);
font-style: italic;
margin-bottom: 20px;
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
color: var(--link-hover-color);
}
.navbar {
overflow: hidden;
background-color: var(--navbar-background);
}
.navbar a {
float: left;
font-size: 16px;
color: rgb(255, 255, 255);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar a:hover {
background-color: var(--button-hover-color);
}
@media (max-width: 1000px) {
.navbar {
overflow-x: auto;
white-space: nowrap;
}
.navbar a {
float: none;
display: inline-block;
}
}