-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (115 loc) · 3.78 KB
/
Copy pathstyle.css
File metadata and controls
130 lines (115 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
color: #fff;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.glass-card {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 40px;
width: 90%;
max-width: 450px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
text-align: center;
transition: transform 0.3s ease;
}
.glass-card.wide {
max-width: 800px; /* Wider for roadmap */
}
/* TYPOGRAPHY */
h1 { margin-bottom: 10px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
p { margin-bottom: 20px; color: #e0e0e0; font-size: 0.9rem; }
.label { display: block; text-align: left; margin: 10px 0 5px; font-size: 0.85rem; opacity: 0.8; }
/* INPUTS */
input, textarea {
width: 100%;
padding: 12px 15px;
margin-bottom: 15px;
background: rgba(255, 255, 255, 0.2);
border: none;
border-radius: 10px;
color: white;
font-size: 1rem;
outline: none;
transition: 0.3s;
}
input::placeholder { color: #ddd; }
input:focus { background: rgba(255, 255, 255, 0.3); box-shadow: 0 0 10px rgba(255,255,255,0.2); }
/* BUTTONS */
.btn {
width: 100%;
padding: 12px;
border: none;
border-radius: 10px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-primary {
background: linear-gradient(45deg, #ffbc00, #ff0058);
color: white;
box-shadow: 0 4px 15px rgba(255, 0, 88, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 0, 88, 0.6); }
.btn-secondary {
background: rgba(255,255,255,0.2);
color: white;
}
.btn-secondary:hover { background: rgba(255,255,255,0.3); }
.roadmap-container {
margin-top: 20px;
text-align: left;
max-height: 500px;
overflow-y: auto;
padding-right: 10px;
}
.roadmap-container::-webkit-scrollbar { width: 6px; }
.roadmap-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 3px; }
.month-card {
background: rgba(0, 0, 0, 0.2);
border-left: 4px solid #ffbc00;
padding: 15px;
margin-bottom: 15px;
border-radius: 0 10px 10px 0;
transition: transform 0.2s;
}
.month-card:hover { transform: translateX(5px); background: rgba(0, 0, 0, 0.3); }
.month-header { color: #ffbc00; font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
.month-goal { font-style: italic; color: #ccc; margin-bottom: 10px; font-size: 0.9rem; }
.task-list li { margin-bottom: 4px; font-size: 0.9rem; color: #eee; margin-left: 20px; }
.chat-box {
height: 350px;
overflow-y: auto;
background: rgba(0,0,0,0.1);
border-radius: 10px;
padding: 15px;
margin-bottom: 15px;
display: flex;
flex-direction: column;
}
.msg { padding: 10px 15px; margin: 5px; border-radius: 15px; max-width: 80%; font-size: 0.9rem; }
.msg.user { align-self: flex-end; background: #23a6d5; color: white; border-bottom-right-radius: 2px; }
.msg.bot { align-self: flex-start; background: rgba(255,255,255,0.85); color: #333; border-bottom-left-radius: 2px; }