sepp81 commited on
Commit
ffc982a
·
verified ·
1 Parent(s): 7dddac1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -9
app.py CHANGED
@@ -11,14 +11,10 @@ def local_css():
11
  st.markdown("""
12
  <style>
13
  /* Global Styling */
14
- body {
15
- background-color: #f0f2f6;
16
- color: #333;
17
- }
18
 
19
  /* Game Container */
20
  .game-container {
21
- background-color: white;
22
  border-radius: 15px;
23
  padding: 20px;
24
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
@@ -27,7 +23,6 @@ def local_css():
27
 
28
  /* Sentences Styling */
29
  .sentence-container {
30
- background-color: #f8f9fa;
31
  border-left: 4px solid #3498db;
32
  padding: 10px;
33
  margin-bottom: 10px;
@@ -35,13 +30,11 @@ def local_css():
35
  }
36
 
37
  .sentence-container:hover {
38
- background-color: #e9ecef;
39
  transform: translateX(5px);
40
  }
41
 
42
  /* Buttons */
43
  .stButton>button {
44
- background-color: #3498db;
45
  color: white;
46
  border-radius: 20px;
47
  border: none;
@@ -50,7 +43,6 @@ def local_css():
50
  }
51
 
52
  .stButton>button:hover {
53
- background-color: #2980b9;
54
  transform: scale(1.05);
55
  }
56
 
 
11
  st.markdown("""
12
  <style>
13
  /* Global Styling */
14
+
 
 
 
15
 
16
  /* Game Container */
17
  .game-container {
 
18
  border-radius: 15px;
19
  padding: 20px;
20
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
 
23
 
24
  /* Sentences Styling */
25
  .sentence-container {
 
26
  border-left: 4px solid #3498db;
27
  padding: 10px;
28
  margin-bottom: 10px;
 
30
  }
31
 
32
  .sentence-container:hover {
 
33
  transform: translateX(5px);
34
  }
35
 
36
  /* Buttons */
37
  .stButton>button {
 
38
  color: white;
39
  border-radius: 20px;
40
  border: none;
 
43
  }
44
 
45
  .stButton>button:hover {
 
46
  transform: scale(1.05);
47
  }
48