JaganathC commited on
Commit
6368658
Β·
verified Β·
1 Parent(s): 784b241

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -11
app.py CHANGED
@@ -13,43 +13,69 @@ CSS = """
13
  color: white !important;
14
  background: black !important;
15
  border-radius: 100vh !important;
16
- transition: transform 0.2s;
17
  }
18
  .duplicate-button:hover {
19
- transform: scale(1.05);
20
  background: linear-gradient(135deg, #6e8efb, #a777e3) !important;
 
21
  }
 
22
  h3, p, h1 {
23
  text-align: center;
24
  color: white;
 
25
  }
 
 
 
 
26
  footer {
27
  text-align: center;
28
  padding: 10px;
29
  width: 100%;
30
- background-color: rgba(240, 240, 240, 0.8);
31
  z-index: 1000;
32
  position: relative;
33
  margin-top: 10px;
34
- color: black;
 
 
35
  }
 
 
 
 
36
  .container {
37
  background: rgba(255, 255, 255, 0.1);
38
  border-radius: 15px;
39
- box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
40
  backdrop-filter: blur(10px);
41
  border: 1px solid rgba(255, 255, 255, 0.3);
42
  padding: 15px;
 
 
 
 
43
  }
44
- """
45
 
46
- FOOTER_TEXT = """
47
- <footer>
48
- <p>πŸ’– If you enjoyed the functionality of the app, please leave a like!<br>
49
- πŸ‘‰ Check out more on <a href="https://www.linkedin.com/in/chowdam-jagan" target="_blank">LinkedIn</a>
50
- </footer>
 
 
 
 
 
 
 
 
 
51
  """
52
 
 
53
  RESUME_ANALYZER_INSTRUCTIONS = """
54
  <div class="container">
55
  <p>πŸ“œ <strong>Instructions:</strong></p>
 
13
  color: white !important;
14
  background: black !important;
15
  border-radius: 100vh !important;
16
+ transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
17
  }
18
  .duplicate-button:hover {
19
+ transform: scale(1.1);
20
  background: linear-gradient(135deg, #6e8efb, #a777e3) !important;
21
+ box-shadow: 0px 4px 10px rgba(110, 142, 251, 0.6);
22
  }
23
+
24
  h3, p, h1 {
25
  text-align: center;
26
  color: white;
27
+ transition: color 0.3s ease-in-out;
28
  }
29
+ h3:hover, p:hover, h1:hover {
30
+ color: #6e8efb;
31
+ }
32
+
33
  footer {
34
  text-align: center;
35
  padding: 10px;
36
  width: 100%;
37
+ background-color: black !important;
38
  z-index: 1000;
39
  position: relative;
40
  margin-top: 10px;
41
+ color: white !important;
42
+ font-weight: bold;
43
+ transition: transform 0.3s ease-in-out;
44
  }
45
+ footer:hover {
46
+ transform: scale(1.02);
47
+ }
48
+
49
  .container {
50
  background: rgba(255, 255, 255, 0.1);
51
  border-radius: 15px;
52
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
53
  backdrop-filter: blur(10px);
54
  border: 1px solid rgba(255, 255, 255, 0.3);
55
  padding: 15px;
56
+ transition: transform 0.3s ease-in-out;
57
+ }
58
+ .container:hover {
59
+ transform: scale(1.02);
60
  }
 
61
 
62
+ .navbar-toggle {
63
+ background: black;
64
+ color: white;
65
+ padding: 10px;
66
+ border-radius: 5px;
67
+ cursor: pointer;
68
+ text-align: center;
69
+ margin-bottom: 10px;
70
+ transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
71
+ }
72
+ .navbar-toggle:hover {
73
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
74
+ transform: scale(1.05);
75
+ }
76
  """
77
 
78
+
79
  RESUME_ANALYZER_INSTRUCTIONS = """
80
  <div class="container">
81
  <p>πŸ“œ <strong>Instructions:</strong></p>