TimWindecker commited on
Commit
9d82914
·
verified ·
1 Parent(s): f433418

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +12 -21
src/streamlit_app.py CHANGED
@@ -27,39 +27,30 @@ st.markdown("""
27
  /* Main title styling */
28
  .main-title {
29
  text-align: center;
30
- font-size: 10rem;
31
  font-weight: 500;
32
  margin-top: 1rem;
33
  margin-bottom: 2rem;
34
  color: #363636;
35
  }
36
 
37
- /* Button links container - Nerfies style */
38
- .button-links {
39
- display: flex;
40
- justify-content: center;
41
- gap: 1rem;
42
  margin-bottom: 3rem;
43
- flex-wrap: wrap;
44
  }
45
 
46
- .button-link {
47
- display: inline-flex;
48
- align-items: center;
49
- gap: 0.5rem;
50
- padding: 0.6rem 1.5rem;
51
- background-color: #363636;
52
- border: 1px solid #363636;
53
- border-radius: 50px;
54
  text-decoration: none;
55
- color: #ffffff;
56
- font-weight: 400;
57
- transition: all 0.3s ease;
58
- font-size: 0.95rem;
59
  }
60
 
61
- .button-link i {
62
- font-size: 1rem;
63
  }
64
 
65
  /* Section headers */
 
27
  /* Main title styling */
28
  .main-title {
29
  text-align: center;
30
+ font-size: 50rem;
31
  font-weight: 500;
32
  margin-top: 1rem;
33
  margin-bottom: 2rem;
34
  color: #363636;
35
  }
36
 
37
+ /* Links container */
38
+ .links-container {
39
+ text-align: center;
 
 
40
  margin-bottom: 3rem;
41
+ font-size: 1.1rem;
42
  }
43
 
44
+ .links-container a {
45
+ margin: 0 1rem;
 
 
 
 
 
 
46
  text-decoration: none;
47
+ color: #667eea;
48
+ font-weight: 600;
49
+ transition: color 0.3s;
 
50
  }
51
 
52
+ .links-container a:hover {
53
+ color: #764ba2;
54
  }
55
 
56
  /* Section headers */