Files
Hunt-AI/static/css/light_theme.css

67 lines
1.2 KiB
CSS

/* light_theme.css */
body {
background-color: #f4f4f4;
color: black;
font-family: 'Arial', sans-serif;
}
h1, h2, h3, p {
color: black;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
color: #6495ed; /* Slightly darker blue on hover */
}
button {
background-color: #ddd;
color: black;
border: none;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, transform 0.2s ease;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #ccc; /* Lighten the button color on hover */
}
.navbar {
background-color: #fff;
padding: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for the navbar */
}
.navbar a {
color: #1e90ff;
padding: 10px;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar a:hover {
background-color: #e0e0e0; /* Light grey background on hover */
color: #6495ed;
}
.card {
background-color: #ffffff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 10px 0;
}
.card-header {
color: #1e90ff;
font-weight: bold;
}