forked from opensource-society/notesvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
159 lines (153 loc) · 3.77 KB
/
search.html
File metadata and controls
159 lines (153 loc) · 3.77 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Browse Notes - NotesVault</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
font-family: 'Poppins', sans-serif;
background-color: #f4f7f2;
}
main.container {
flex: 1;
padding: 20px 5vw;
}
header {
background-color: #ffffff;
border-bottom: 1px solid #e0e0e0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5vw;
max-width: 1200px;
margin: 0 auto;
}
#header-title {
font-weight: 600;
font-size: 1.6rem;
color: #163d3b;
}
.nav-menu {
display: flex;
gap: 30px;
}
.nav-menu a {
text-decoration: none;
font-weight: 400;
color: #163d3b;
font-size: 1rem;
position: relative;
}
.nav-menu a::after {
content: "";
display: block;
width: 0;
height: 2px;
background: #f7b86e;
transition: width 0.3s;
position: absolute;
bottom: -5px;
left: 0;
}
.nav-menu a:hover::after {
width: 100%;
}
#header-signup-box p {
background-color: #163d3b;
color: white;
padding: 8px 20px;
border-radius: 30px;
font-weight: 500;
}
.filters {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 30px;
}
select {
padding: 10px;
border-radius: 8px;
border: 1px solid #ccc;
font-family: 'Poppins', sans-serif;
}
.note-card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.note-card h3 {
margin-top: 0;
}
.modern-footer {
background: linear-gradient(135deg, #163d3b 0%, #1a4441 100%);
color: #dff8f8;
padding: 30px 5vw;
text-align: center;
}
</style>
</head>
<body>
<!-- ===== Header ===== -->
<header>
<div id="header">
<div id="header-title-box">
<p id="header-title">NotesVault</p>
</div>
<div id="header-navigation" class="nav-menu">
<a href="index.html">Home</a>
<a href="search.html">Browse</a>
<a href="upload.html">Upload</a>
</div>
<div id="header-signup-box">
<p>Sign Up</p>
</div>
</div>
</header>
<!-- ===== Main Browse Section ===== -->
<main class="container">
<h1>Browse Notes</h1>
<div class="filters">
<select id="branch-filter">
<option value="">All Branches</option>
<option value="CSE">CSE</option>
<option value="CSE AIML">CSE AIML</option>
<option value="CSE IOT">CSE IOT</option>
<option value="CSE DS">CSE DS</option>
</select>
<select id="semester-filter">
<option value="">All Semesters</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
<select id="subject-filter">
<option value="">All Subjects</option>
</select>
</div>
<div id="notes-container" class="notes-list"></div>
</main>
<!-- ===== Footer ===== -->
<footer class="modern-footer">
<div class="footer-container">
<p>© 2025 NotesVault - GSSoC Contribution</p>
</div>
</footer>
<script src="script.js" defer></script>
</body>
</html>