-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
200 lines (169 loc) · 3.84 KB
/
style.css
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/* General Styles */
body {
font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: 300;
text-align: center;
background-image: radial-gradient( circle farthest-corner at 10% 20%, rgb(0, 138, 126) 0%, #00518a, rgb(58, 0, 87) 90% );
height: 100%;
padding: 0;
width: 90%;
max-width: fit-content;
margin: 0 auto;
color: white;
background-repeat: no-repeat;
background-attachment: fixed;
}
p {
font-size: 2vh;
margin: 0;
}
a {
text-decoration: none;
color: #4cdeff;
font-weight: 800;
transition: all 0.3s ease-in-out;
}
a:hover {
color: #2aafd5;
}
/* Container Styles */
.container {
width: 80vw;
margin: 50px auto;
padding: 40px;
background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(0, 0, 0, 0.43) 0%, rgba(0, 0, 0, 0.44) 90% );
border-radius: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
}
/* Heading Styles */
h1 {
font-size: 2rem;
margin: 0;
}
#logoContainer {
margin-top: 50px;
}
#title {
font-size: 7vh;
margin-bottom: 0;
font-weight: 600;
position: relative;
display: inline-block;
}
.gradient {
background: #fc00ff; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #00dbde, #fc00ff); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #00dbde, #fc00ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
#description {
font-weight: 300;
margin-bottom: 50px;
font-size: 2.5vh;
}
/* Input Styles */
input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) {
width: 90%;
max-width: 500px;
padding: 15px;
margin-bottom: 50px;
border: none;
border-radius: 50px;
background-color: #f0f0f0;
font-size: 2vh;
outline: none;
transition: background-color 0.3s;
}
@media only screen and (max-width: 600px) {
input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) {
width: 90%;
}
.container {
width: auto;
padding: 2px;
}
footer p {
font-size: 1.5vh;
}
#ideaContainer {
width: 85%;
justify-content: center;
}
}
input[type="text"]::placeholder {
color: #999;
}
input[type="text"]:focus {
background-color: #e0e0e0;
}
/* Button Styles */
button {
padding: 15px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 50px;
cursor: pointer;
font-size: 2vh;
transition: background-color 0.3s;
display: inline-block;
}
button:hover {
background-color: #0056b3;
}
/* Loading Icon Styles */
.loading-icon {
width: 5vh;
display: none;
margin: 10px auto 0; /* simplified margin */
}
.loading > .loading-icon {
display: block;
}
/* Idea Container Styles */
#ideaContainer {
margin-bottom: 40px;
text-align: left;
padding: 30px;
}
#ideaContainer h1 {
margin-bottom: 15px;
}
#ideaContainer p {
padding: 15px;
margin-bottom: 20px;
border-radius: 10px;
background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(0, 0, 0, 0.43) 0%, rgba(0, 0, 0, 0.44) 90% );
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#ideaContainer span {
margin-bottom: 15px;
}
footer {
bottom: 5px;
position: relative;
}
footer p {
margin-bottom: 40px;
}
#pathContainer {
margin-top: 50px;
margin-bottom: 20px;
font-size: 2.5vh;
}
#pathContainer button {
color: white;
background: none;
padding: 0;
font-size: 2.5vh;
}
#pathContainer span {
font-weight: 800;
margin: 5px;
}
.idea-btn {
margin-top: 20px;
}