FreeCompetitors/default.css

233 lines
3.8 KiB
CSS
Raw Permalink Normal View History

2022-04-04 18:34:28 +02:00
/*
This file could be used under both CC-BY-SA 4.0 or at your chosing GNU GPLv3 or any later version
*/
html {}
* {
2024-04-29 18:19:03 +02:00
background-color: #1a1a1a; /* Dark background color */
2022-04-04 18:34:28 +02:00
font-size: 20px;
list-style-type: none;
}
body{
2024-04-29 18:19:03 +02:00
color: #e0e0e0; /* Light text color */
font-family: Open Sans, sans-serif;
font-weight: normal;
2022-04-04 18:34:28 +02:00
margin-top: 5%;
margin-bottom: 5%;
margin-right: 20%;
margin-left: 20%;
}
@font-face {
font-family: "Open-Sans-Extrabold" Open Sans;
/*src: url(/font);*/
}
pre {
/*background: #a89984;*/
border: 10px solid #928374;
border-radius: 10px;
padding: 1em;
margin: 1em;
white-space: pre-wrap;
}
h1 {
font-size: 30px;
2024-04-29 18:19:03 +02:00
color: #4fc3f7; /* Bright accent color */
2022-04-04 18:34:28 +02:00
}
h2 {
font-size: 25px;
2024-04-29 18:19:03 +02:00
color: #ffffff;
2022-04-04 18:34:28 +02:00
}
h3 {
2024-04-29 18:19:03 +02:00
font-size: 22px;
color: #03a9f4; /* Complementary accent color */
2022-04-04 18:34:28 +02:00
}
code {
2022-04-06 21:03:07 +02:00
background-color: #000000;
2022-04-04 18:34:28 +02:00
/*border: 5px solid #928374;*/
border-radius: 5px;
word-wrap: break-word;
overflow-wrap: break-word;
}
ul li {
list-style: inside circle;
display:list-item;
}
table {
border-collapse: collapse;
border: 2px solid #7c6f64;
}
th,td {
border: 2px solid #7c6f64;
}
a {
2024-04-29 18:19:03 +02:00
color: #4fc3f7;
2022-04-14 22:36:34 +02:00
text-decoration: none;
2022-04-04 18:34:28 +02:00
}
a:hover {
2024-04-29 18:19:03 +02:00
color: #b3e5fc; /* Lighter hover color */
2022-04-14 22:36:34 +02:00
text-decoration: none;
2022-04-04 18:34:28 +02:00
}
img {
max-width: 50%;
height: auto;
}
2024-04-29 18:19:03 +02:00
input[type=text], button, .button {
2022-04-04 18:34:28 +02:00
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 0px solid black;
2024-04-29 18:19:03 +02:00
background-color: #424242; /* Dark button background */
color: #e0e0e0;
2022-04-04 18:34:28 +02:00
font-weight: bold;
}
2024-04-29 18:19:03 +02:00
2022-04-16 22:09:43 +02:00
.button { line-height: 3 }
2024-04-29 18:19:03 +02:00
2022-04-04 18:34:28 +02:00
summary {
2024-04-29 18:19:03 +02:00
color: #4fc3f7;
2022-04-04 18:34:28 +02:00
font-weight: bold;
}
2024-04-29 18:19:03 +02:00
2022-04-04 18:34:28 +02:00
summary:hover, summary:hover > h1 {
2024-04-29 18:19:03 +02:00
color: #b3e5fc;
2022-04-04 18:34:28 +02:00
cursor: pointer;
}
2024-04-29 18:19:03 +02:00
2022-04-16 22:09:43 +02:00
button:hover, input:hover, button:focus, input:focus, .button:hover, .button:focus {
2024-04-29 18:19:03 +02:00
background-color: #03a9f4;
color: #ffffff;
2022-04-04 18:34:28 +02:00
}
hr {
2024-04-29 18:19:03 +02:00
border-top: 1px solid #4fc3f7;
2022-04-04 18:34:28 +02:00
}
2022-04-04 18:54:11 +02:00
p {
margin-right: 5%;
margin-left: 5%;
}
2022-04-15 21:25:42 +02:00
.searchbar {
width: 90%;
height: 70;
position: fixed;
top: 0;
margin-top: 1%;
left: 5%;
}
.side_found { margin-top: 100}
2022-04-16 12:37:13 +02:00
/*
If a screen is at least 1024 pixels wide, we do some more things.
*/
2022-04-15 21:25:42 +02:00
@media screen and (min-width: 1024px) {
.recomendations {
margin-left: 40%;}
.searchbar {
width: 35%;}
2022-04-15 21:29:20 +02:00
2022-04-15 21:25:42 +02:00
.side_found {
margin-top: 0;
width: 35%;
position: fixed;
top:100;
left:5%;} }
2022-04-16 12:37:13 +02:00
/* prgoress bar theme */
2024-04-29 18:19:03 +02:00
.back_progress {
background-color: #424242;
width: 100%;
height: 7px;
}
2022-04-16 12:37:13 +02:00
.back_progress:hover {
2024-04-29 18:19:03 +02:00
background-color: #4fc3f7;
}
.front_progress {
background-color: #03a9f4;
height: 7px;
}
/* Footer styles */
footer {
padding: 20px 0;
text-align: center;
2022-04-16 12:37:13 +02:00
}
2024-04-29 18:19:03 +02:00
footer .container {
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
2022-04-04 18:54:11 +02:00
}
2024-04-29 18:19:03 +02:00
footer p {
color: #e0e0e0;
margin-bottom: 10px;
}
.button-group {
background-color: transparent;
padding: 0;
margin: 0;
}
.button-group a.button {
padding: 8px 15px;
margin: 5px;
background-color: #4fc3f7;
color: #1a1a1a;
text-decoration: none;
font-size: 0.9em;
border: none;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
min-width: 100px;
max-width: 150px;
white-space: normal;
}
.button-group a.button:hover {
background-color: #03a9f4;
color: #ffffff;
}
/* Suggestions container */
.suggestions-container {
margin-top: 40px;
}
/* Competitors heading */
.competitors-heading {
font-size: 28px;
color: #4fc3f7;
margin-bottom: 20px;
}
/* Problematic heading */
.problematic-heading {
font-size: 24px;
color: #f44336;
margin-bottom: 10px;
}