-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode
More file actions
192 lines (166 loc) · 3.5 KB
/
Code
File metadata and controls
192 lines (166 loc) · 3.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Student Resources Management System</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
body {
background: linear-gradient(135deg, #1e293b, #0f172a, #4c1d95);
height: 100vh;
color: white;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 40px;
background: rgba(0, 0, 0, 0.25);
backdrop-filter: blur(10px);
}
.logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 22px;
font-weight: 700;
}
.login-btn {
background: #2563EB;
padding: 10px 20px;
border-radius: 8px;
border: none;
color: white;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: 0.3s;
}
.login-btn:hover {
background: #1d4ed8;
}
.container {
text-align: center;
margin-top: 50px;
padding: 20px;
}
.container h1 {
font-size: 36px;
font-weight: 700;
}
.container p {
font-size: 16px;
margin-top: 8px;
color: #cbd5e1;
}
.search-bar {
margin: 30px auto;
display: flex;
justify-content: center;
gap: 10px;
}
.search-bar input {
width: 60%;
padding: 12px;
border-radius: 8px;
border: none;
font-size: 15px;
outline: none;
}
.search-bar button {
padding: 12px 18px;
border-radius: 8px;
border: none;
background: #7C3AED;
color: white;
font-size: 15px;
font-weight: 600;
cursor: pointer;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 25px;
padding: 20px 60px;
margin-top: 20px;
}
.card {
background: rgba(255,255,255,0.1);
padding: 22px;
border-radius: 16px;
backdrop-filter: blur(12px);
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
transition: 0.3s;
cursor: pointer;
}
.card:hover {
transform: translateY(-6px);
background: rgba(255,255,255,0.16);
}
.card h2 {
font-size: 20px;
font-weight: 600;
margin-bottom: 6px;
}
.card p {
font-size: 14px;
color: #e2e8f0;
}
@media (max-width: 768px) {
.search-bar input {
width: 80%;
}
.grid {
padding: 20px;
}
}
</style>
</head>
<body>
<nav>
<div style="text-align:center;"><img src="Logo design for Stud.png" alt="My logo" height="200px" width="200px"></div>
<div class="logo">
<div style="text-align:center;"></div>
</div>
<div>Home</div>
<div>About</div>
<button class="login-btn">Login</button>
</nav>
<div class="container">
<h1>Access All Academic Resources</h1>
<p>A unified platform for AIML, AIDS, CSE & CS departments</p>
<div class="search-bar">
<input type="text" placeholder="Search assignments, papers, notes, resources..." />
<button>Search</button>
</div>
</div>
<div class="grid">
<div class="card">
<h2>Assignments</h2>
<p>Get all department assignments instantly</p>
</div>
<div class="card">
<h2>Previous Papers</h2>
<p>Access past university question papers</p>
</div>
<div class="card">
<h2>Resources</h2>
<p>Books, references, PDFs, links</p>
</div>
<div class="card">
<h2>Notes</h2>
<p>Lecture notes, guides, summaries</p>
</div>
<div class="card">
<h2>Study Links</h2>
<p>For doubt solving links for effective Learning</p>
</div>
</div>
</body>
</html>