-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyles.css
134 lines (115 loc) · 2.19 KB
/
styles.css
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* General Page Styling */
.stApp {
background-color: #f5f5f5;
}
h1 {
color: #4b4b4b;
font-size: 2.5em;
font-weight: bold;
}
h2 {
color: #4b4b4b;
font-size: 2em;
margin-bottom: 15px;
}
.css-1v3fvcr {
background-color: #f0f0f5;
padding: 20px;
}
/* Buttons */
.stButton>button {
background-color: #4b4b4b;
color: white;
border-radius: 10px;
padding: 10px 20px;
font-size: 1em;
width: 150px; /* Button width */
height: 50px; /* Button height */
transition: background-color 0.3s ease;
}
.stButton>button:hover {
background-color: #2f2f2f;
}
/* Input Fields */
.stTextArea, .stTextInput, .stSelectbox, .stRadio {
border-radius: 10px;
padding: 10px;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
/* Footer */
footer {
background-color: #f0f0f5;
padding: 10px;
text-align: center;
color: #4b4b4b;
position: fixed;
width: 100%;
bottom: 0;
}
/* Container Padding */
.block-container {
padding-top: 20px;
padding-bottom: 50px;
}
/* Layout Flexbox */
.css-18e3c8v {
display: flex;
flex-direction: column;
}
.css-1w2df9a {
margin: 10px;
}
/* Table Styles */
.stDataFrame {
width: 100%;
margin-top: 20px;
border-collapse: collapse;
}
.stDataFrame th {
background-color: #4b4b4b;
color: white;
font-weight: bold;
padding: 10px;
text-align: left;
border-bottom: 2px solid #ddd;
}
.stDataFrame td {
padding: 10px;
border-bottom: 1px solid #ddd;
background-color: #fff;
}
.stDataFrame tr:hover {
background-color: #f1f1f1;
}
/* Markdown Styles */
.stMarkdown {
font-family: 'Arial', sans-serif;
color: #4b4b4b;
line-height: 1.6;
}
.stMarkdown h1 {
font-size: 2.5em;
font-weight: bold;
margin-bottom: 15px;
}
.stMarkdown h2 {
font-size: 2em;
font-weight: bold;
margin-bottom: 10px;
}
.stMarkdown a {
color: #0066cc;
text-decoration: none;
}
.stMarkdown a:hover {
text-decoration: underline;
}
/* Code Blocks in Markdown */
.stMarkdown code {
background-color: #f4f4f4;
padding: 2px 6px;
border-radius: 4px;
font-family: 'Courier New', monospace;
color: #d63384;
}