-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathindex.css
244 lines (203 loc) · 4.78 KB
/
index.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
.navbar-item {
font-family: "Poppins", sans-serif;
transition: color 0.3s ease, background-color 0.3s ease;
#bgCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
filter: blur(5px);
}
.navbar-item:hover {
color: #ffffff; /* White text */
text-decoration: none;
}
.navbar-burger:hover {
background-color: #1abc9c; /* Teal hover for burger menu */
color: #ffffff;
}
/* Buttons */
button, .button {
font-family: "Poppins", sans-serif;
font-size: 1rem;
transition: transform 0.3s ease, background-color 0.3s ease;
}
button:hover, .button:hover {
transform: scale(1.1);
background-color: #27ae60; /* Darker green for hover */
}
/* Links */
a {
color: #1abc9c; /* Teal color */
transition: color 0.3s ease, text-decoration 0.3s ease;
}
a:hover {
color: #ffffff; /* Change to white */
text-decoration: underline;
}
/* Search bar */
#searchInput {
font-family: "Poppins", sans-serif;
font-size: 1rem;
padding: 10px;
border-radius: 5px;
border: 1px solid #27ae60; /* Green border */
background-color: #2c3e50; /* Dark background */
color: #ecf0f1; /* Light text */
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#searchInput:focus {
outline: none;
border-color: #1abc9c;
box-shadow: 0 0 8px rgba(26, 188, 156, 0.8);
}
#searchButton {
background-color: #1abc9c;
color: #ffffff;
transition: transform 0.3s ease, background-color 0.3s ease;
}
#searchButton:hover {
background-color: #27ae60;
transform: scale(1.05);
}
/* Table links hover effects */
.table a {
font-family: "Poppins", sans-serif;
font-weight: bold;
color: #1abc9c; /* Initial teal color */
transition: color 0.3s ease, text-decoration 0.3s ease;
}
.table a:hover {
color: #16a085; /* Darker teal */
text-decoration: underline;
}
/* Footer social icons hover */
.footer .button.is-dark.is-rounded {
background-color: #2c3e50; /* Dark background */
color: #ecf0f1;
transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer .button.is-dark.is-rounded:hover {
background-color: #1abc9c; /* Teal on hover */
transform: scale(1.2);
}
/* Navbar title hover */
.navbar-brand .navbar-item.has-text-weight-bold:hover {
color: #ffffff; /* White text */
background-color: #16a085; /* Green background */
}
/* Adjust body and overall font-family */
body {
font-family: "Poppins", sans-serif;
background-color: #181818;
color: #ffffff;
@media(max-width:426px) {
.links table tbody tr td {
padding: 6px 2px; /* Reduce padding for smaller screens */
}
}
@media(max-width:330px) {
.links table tbody tr td {
padding-left: 2px;
padding-right: 2px;
}
.links table tbody tr .project-name {
padding: 6px 4px; /* Reduce padding for project names */
}
.links table tbody tr td a {
margin-left: 4px;
}
}
/* Add hover effect for links */
.links table tbody tr td a:hover {
color: #007BFF; /* Change color on hover */
text-decoration: underline; /* Highlight links */
}
/* Base styles */
body {
font-family: sans-serif;
background-color: #181818; /* Dark gray background */
color: #ffffff; /* White text color */
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Header styles */
header {
background-color: #2ecc71; /* Teal color */
color: #ffffff; /* White text */
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin: 0;
font-size: 2rem; /* Adjust font size as needed */
}
header nav {
display: flex;
gap: 1rem;
}
header a {
color: #ffffff;
text-decoration: none;
}
/* Main content styles */
main {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
main h1 {
font-size: 3rem;
margin-bottom: 1rem;
color: #ffffff; /* White heading text */
}
/* Search bar styles */
#search-bar {
display: flex;
margin-bottom: 2rem;
}
#searchInput {
padding: 1rem;
border-radius: 5px;
border: none;
background-color: #0d0d0d; /* Dark gray input background */
color: #f5eeee; /* White input text */
flex-grow: 1;
}
#searchButton {
padding: 1rem 1.5rem;
background-color: #2ecc71; /* Teal button color */
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
height: 24px;
}
/* No projects message */
#no-projects {
text-align: center;
margin-top: 2rem;
}
footer {
background-color: #222222;
color: #f3eeee;
}
footer a:hover {
color: #1abc9c; /* Teal hover */
text-decoration: underline;
}
#title-heading {
margin-bottom: 20px;
background-color: #222222;
padding: 1rem;
text-align: center;
color: #f3eeee; /* Light gray footer text */
}