TeresaK commited on
Commit
75b1650
·
verified ·
1 Parent(s): 93b63ff

Delete style

Browse files
Files changed (1) hide show
  1. style/style.css +0 -103
style/style.css DELETED
@@ -1,103 +0,0 @@
1
- .remark {
2
- background-color: #FFCDD2;
3
- border: 1px solid #E57373;
4
- border-radius: 4px;
5
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
6
- margin-bottom: 1rem;
7
- padding: 1rem;
8
- }
9
-
10
- .remark-content {
11
- display: flex;
12
- align-items: center;
13
- }
14
-
15
- .remark-text {
16
- margin-bottom: 0.5rem;
17
- font-size: 20;
18
- }
19
-
20
- .feedback-link {
21
- display: inline-block;
22
- background-color: #b50d1c; /* Adjusted color */
23
- color: white;
24
- border: none;
25
- border-radius: 4px;
26
- padding: 0.5rem 1rem;
27
- text-decoration: none;
28
- font-size: 1rem;
29
- cursor: pointer;
30
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added */
31
- }
32
-
33
- .feedback-link:hover {
34
- background-color: #8c0716; /* Adjusted hover color */
35
- }
36
-
37
- .feedback-link[href^="mailto"] {
38
- color: white !important;
39
- text-decoration: none !important;
40
- }
41
-
42
-
43
-
44
- /* Style streamlit general text */
45
- .description {
46
- font-size:20px !important;
47
- }
48
-
49
-
50
- /* Style streamlit header with bold text */
51
- .header {
52
- font-size:30px !important;
53
- font-weight: bold;
54
- }
55
-
56
- .stMultiSelect > div > div > div {
57
- width: 350px !important;
58
- font-size: 20px;
59
- }
60
-
61
- /* Style columns */
62
- [data-testid="column"] {
63
- border-radius: 15px;
64
- background-color: white;
65
- box-shadow: 0 0 10px #eee;
66
- border: 1px solid #ddd;
67
- padding: 1rem;;
68
- }
69
- /* Style containers */
70
- [data-testid="stVerticalBlock"] > [style*="flex-direction: column;"] > [data-testid="stVerticalBlock"] {
71
- border-radius: 15px;
72
- background-color: white;
73
- box-shadow: 0 0 10px #eee;
74
- border: 1px solid #ddd;
75
- padding: 1rem;;
76
- }
77
-
78
- .stTabs [data-baseweb="tab-list"] button [data-testid="stMarkdownContainer"] p {
79
- font-size:20px;
80
- }
81
-
82
- /* Style streamlit button */
83
- .stButton>button {
84
- font-size: 12px;
85
- padding: 8px 12px;
86
- border: none;
87
- text-align: center;
88
- text-decoration: none;
89
- display: inline-block;
90
- cursor: pointer;
91
- border-radius: 4px;
92
- transition: background-color 0.3s, box-shadow 0.3s;
93
- background-color: #f2f2f2;
94
- color: #333;
95
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
96
-
97
- .stButton>button:hover {
98
- background-color: #e0e0e0;
99
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
100
- }
101
-
102
-
103
-