-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
142 lines (124 loc) · 3.31 KB
/
style.css
File metadata and controls
142 lines (124 loc) · 3.31 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
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
135
136
137
138
139
140
141
142
body {
background-color: #2e3436;
color: #F5F5F5;
font-family: 'Segoe UI', sans-serif;
}
[data-testid="stSidebar"] {
background-color: #ffffff;
border-right: 1px solid #cccccc;
padding-top: 10px;
}
.nav-title {
font-size: 24px;
font-weight: bold;
padding: 10px 10px 5px 10px;
text-align: center;
color: #000000;
cursor: pointer;
display: block;
}
.nav-title:hover {
color: #3d3d3d;
text-decoration: none;
}
.nav-section {
font-size: 14px;
font-weight: bold;
padding: 20px 10px 5px 10px;
color: #000000;
opacity: 0.8;
border-top: 1px solid #ccc;
}
a.nav-link {
display: block;
padding: 8px 15px;
color: #000000;
text-decoration: none;
font-size: 14px;
margin-bottom: 5px;
}
a.nav-link:hover {
background-color: #f0f0f0;
border-radius: 5px;
}
.page-title {
font-size: 28px;
font-weight: bold;
color: #363636;
margin-bottom: 20px;
}
[data-testid="stDataFrame"] {
border-radius: 10px;
overflow: hidden;
}
.css-1r6slb0, .css-1n76uvr {
display: none !important;
}
.stSidebar button {
background: none !important;
border: none !important;
padding: 8px 15px !important;
color: #000000 !important;
text-decoration: none !important;
font-size: 14px !important;
margin-bottom: 5px !important;
text-align: left !important;
width: 100% !important;
cursor: pointer !important;
box-shadow: none !important;
}
.stSidebar button:hover {
background-color: #f0f0f0 !important;
border-radius: 5px !important;
}
.upload-info-box {
margin: 10px 0;
padding: 10px;
background-color: #3d4144 !important;
border-radius: 5px;
color: #ffffff !important;
border: 1px solid #5a5e62;
}
.upload-info-box strong {
color: #bdbdbd !important;
}
[data-testid="stSidebarCollapseButton"] {
visibility: visible !important;
opacity: 1 !important;
position: relative !important;
top: auto !important;
left: auto !important;
}
/* Mobile-specific styling for expand panel button - as per issue #7 */
@media (max-width: 768px) {
[data-testid="stSidebarCollapseButton"] {
background-color: #4CAF50 !important; /* Highlight color */
color: white !important;
transform: scale(1.3) !important; /* Make button larger */
border-radius: 50% !important;
box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
transition: all 0.3s ease !important;
}
[data-testid="stSidebarCollapseButton"]:hover {
background-color: #45a049 !important;
transform: scale(1.4) !important;
box-shadow: 0 6px 12px rgba(0,0,0,0.3) !important;
}
/* Make the button even more prominent */
[data-testid="stSidebarCollapseButton"] svg {
width: 24px !important;
height: 24px !important;
}
}
.home-content {
max-width: 800px;
margin: 40px auto;
text-align: center;
color: #000000; /* Изменено с #F5F5F5 на #000000 (черный) */
font-size: 16px;
line-height: 1.5;
background-color: #2c2c2c; /* Добавлен белый фон */
padding: 20px; /* Добавлены отступы */
border-radius: 10px; /* Закругленные углы */
box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Легкая тень для глубины */
}