-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathindex.css
138 lines (117 loc) · 2.17 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
body,
html {
margin: 0;
overflow: auto;
overflow-x: hidden;
}
#bgCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.content {
position: relative;
z-index: 1;
padding: 20px;
}
#bgCanvas {
filter: blur(5px);
}
@media(max-width:426px) {
.links table tbody tr td{
padding: 8px 4px;
}
}
@media(max-width:330px) {
.links table tbody tr td{
padding-left: 2px;
padding-right: 2px;
}
.links table tbody tr .project-name{
padding: 8px 7px;
}
.links table tbody tr td a{
margin-left: 4px;
}
}
/* 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 */s
#no-projects {
text-align: center;
margin-top: 2rem;
}
/* Footer styles */
footer {
background-color: #222222;
padding: 1rem;
text-align: center;
color: #f3eeee; /* Light gray footer text */
}