ayush2917 commited on
Commit
29d4eb8
·
verified ·
1 Parent(s): 00127ed

Update static/css/styles.css

Browse files
Files changed (1) hide show
  1. static/css/styles.css +110 -25
static/css/styles.css CHANGED
@@ -2,7 +2,7 @@
2
  body {
3
  margin: 0;
4
  font-family: 'Comic Sans MS', 'Chalkduster', cursive;
5
- background: url('/static/assets/vrindavan-bg.jpg') no-repeat center center/cover; /* Use the edited image as background */
6
  color: #333;
7
  overflow-x: hidden;
8
  position: relative;
@@ -17,48 +17,133 @@ body {
17
  z-index: 1;
18
  }
19
 
20
- .welcome {
21
- font-size: 3em;
22
- color: #FF4500; /* Bright orange for the welcome text */
23
- text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8); /* White shadow for readability */
 
 
24
  animation: fadeIn 2s ease-in-out;
25
  }
26
 
27
- @keyframes fadeIn {
28
- 0% { opacity: 0; transform: translateY(-20px); }
29
- 100% { opacity: 1; transform: translateY(0); }
 
30
  }
31
 
32
- h2 {
33
- font-size: 1.5em;
34
- color: #FF1493; /* Deep pink */
35
- text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
36
- animation: fadeIn 2s ease-in-out 0.5s;
37
  }
38
 
39
- .countdown, .daily-message, .daily-blessing, .daily-horoscope {
40
- background: rgba(255, 255, 255, 0.9); /* Slightly more opaque for readability */
41
- padding: 15px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  margin: 10px 0;
 
 
 
 
 
 
43
  border-radius: 10px;
44
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
45
- animation: fadeIn 2s ease-in-out 1s;
46
  }
47
 
48
- .countdown p, .daily-message p, .daily-blessing p, .daily-horoscope p {
49
- margin: 0;
 
 
 
 
 
50
  font-size: 1.2em;
51
  color: #333;
 
52
  }
53
 
54
- .special {
55
- background: rgba(255, 215, 0, 0.5); /* Gold tint for special messages */
 
56
  }
57
 
58
- .verse {
59
- font-style: italic;
60
- color: #555;
61
- font-size: 0.9em;
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  }
63
 
64
  nav {
 
2
  body {
3
  margin: 0;
4
  font-family: 'Comic Sans MS', 'Chalkduster', cursive;
5
+ background: url('/static/assets/vrindavan-edited-bg.jpg') no-repeat center center/cover; /* Use the edited image as background */
6
  color: #333;
7
  overflow-x: hidden;
8
  position: relative;
 
17
  z-index: 1;
18
  }
19
 
20
+ /* Chat Page Styles */
21
+ .chat-container {
22
+ background: rgba(255, 255, 255, 0.9); /* Slightly more opaque for readability */
23
+ padding: 20px;
24
+ border-radius: 10px;
25
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
26
  animation: fadeIn 2s ease-in-out;
27
  }
28
 
29
+ .chat-container h1 {
30
+ font-size: 2.5em;
31
+ color: #FF4500; /* Bright orange */
32
+ text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8); /* White shadow for readability */
33
  }
34
 
35
+ .chat-options {
36
+ margin: 20px 0;
 
 
 
37
  }
38
 
39
+ .chat-options button {
40
+ background: #FF69B4; /* Pink */
41
+ color: white;
42
+ border: none;
43
+ padding: 10px 20px;
44
+ margin: 5px;
45
+ border-radius: 5px;
46
+ cursor: pointer;
47
+ transition: background 0.3s;
48
+ }
49
+
50
+ .chat-options button:hover {
51
+ background: #FF1493; /* Darker pink on hover */
52
+ }
53
+
54
+ .chat-input {
55
+ display: flex;
56
+ justify-content: center;
57
+ align-items: center;
58
+ margin-top: 20px;
59
+ }
60
+
61
+ .chat-input input {
62
+ padding: 10px;
63
+ width: 70%;
64
+ border: 1px solid #ccc;
65
+ border-radius: 5px;
66
+ font-size: 1em;
67
+ }
68
+
69
+ .chat-input button {
70
+ background: #FFD700; /* Gold */
71
+ color: #333;
72
+ border: none;
73
+ padding: 10px 20px;
74
+ margin-left: 10px;
75
+ border-radius: 5px;
76
+ cursor: pointer;
77
+ transition: background 0.3s;
78
+ }
79
+
80
+ .chat-input button:hover {
81
+ background: #FF4500; /* Orange on hover */
82
+ }
83
+
84
+ .chat-history {
85
+ max-height: 300px;
86
+ overflow-y: auto;
87
+ margin-top: 20px;
88
+ padding: 10px;
89
+ background: rgba(255, 255, 255, 0.8);
90
+ border-radius: 5px;
91
+ }
92
+
93
+ .chat-history p {
94
+ margin: 5px 0;
95
+ font-size: 1.1em;
96
+ }
97
+
98
+ .chat-error {
99
+ color: #FF4500;
100
+ font-weight: bold;
101
  margin: 10px 0;
102
+ }
103
+
104
+ /* Birthday Message Page Styles */
105
+ .message-container {
106
+ background: rgba(255, 255, 255, 0.9);
107
+ padding: 20px;
108
  border-radius: 10px;
109
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
110
+ animation: fadeIn 2s ease-in-out;
111
  }
112
 
113
+ .message-container h1 {
114
+ font-size: 2.5em;
115
+ color: #FF1493; /* Deep pink */
116
+ text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
117
+ }
118
+
119
+ .message-container p {
120
  font-size: 1.2em;
121
  color: #333;
122
+ margin: 10px 0;
123
  }
124
 
125
+ .message-container ul {
126
+ list-style-type: none;
127
+ padding: 0;
128
  }
129
 
130
+ .message-container ul li {
131
+ font-size: 1.1em;
132
+ color: #FF4500; /* Orange for gift suggestions */
133
+ margin: 5px 0;
134
+ }
135
+
136
+ .message-container img {
137
+ max-width: 100%;
138
+ height: auto;
139
+ border-radius: 10px;
140
+ margin-top: 20px;
141
+ }
142
+
143
+ /* General Animations */
144
+ @keyframes fadeIn {
145
+ 0% { opacity: 0; transform: translateY(-20px); }
146
+ 100% { opacity: 1; transform: translateY(0); }
147
  }
148
 
149
  nav {