-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.53 KB
/
style.css
File metadata and controls
64 lines (56 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* Background and main app theme */
body {
background-color: antiquewhite;
}
/* Sidebar customization */
[data-testid="stSidebar"] {
background-color: #800000; /* Deep red sidebar for martial arts style */
color: #FFFFFF; /* White text for contrast */
}
/* Buttons styling */
button {
background-color: #FFD700; /* Gold buttons for highlights */
color: #800000; /* Deep red text for harmony with the sidebar */
border-radius: 8px;
font-weight: bold;
border: none;
padding: 10px 20px;
}
/* Headers and titles */
h1, h2, h3 {
color: #FFD700; /* Consistent gold color for headers */
text-transform: uppercase;
font-family: 'Trebuchet MS', sans-serif;
font-weight: bold;
text-shadow: 2px 2px 5px #800000; /* Subtle shadow for depth */
}
/* Dataframe styling */
[data-testid="stDataFrameContainer"] {
background-color: #333333; /* Dark background for dataframes */
color: #FFD700; /* Gold text for readability */
border-radius: 10px;
padding: 10px;
}
/* Links */
a {
color: #FFD700;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
/* Inputs */
input, select {
background-color: #333333; /* Input fields with dark background */
color: #FFD700; /* Gold text for consistency */
border: 1px solid #FFD700;
border-radius: 5px;
padding: 8px;
}
/* Success messages */
.stAlert {
background-color: #4CAF50; /* Green background for success */
color: #FFFFFF; /* White text for readability */
border-radius: 5px;
}