Neurolingua
commited on
Commit
•
621e533
1
Parent(s):
0007861
Update templates/teacher_paper_gen.html
Browse files
templates/teacher_paper_gen.html
CHANGED
@@ -136,6 +136,38 @@
|
|
136 |
padding: 20px;
|
137 |
}
|
138 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
</style>
|
140 |
</head>
|
141 |
<body>
|
@@ -143,6 +175,10 @@
|
|
143 |
<source src="../static/paper.mp4" type="video/mp4">
|
144 |
Your browser does not support the video tag.
|
145 |
</video>
|
|
|
|
|
|
|
|
|
146 |
|
147 |
<div class="container">
|
148 |
<h1>Question Paper Generator</h1>
|
|
|
136 |
padding: 20px;
|
137 |
}
|
138 |
}
|
139 |
+
.back-button {
|
140 |
+
position: fixed;
|
141 |
+
top: 20px;
|
142 |
+
left: 20px;
|
143 |
+
background-color: #3498db;
|
144 |
+
color: white;
|
145 |
+
border: none;
|
146 |
+
border-radius: 50%;
|
147 |
+
width: 50px;
|
148 |
+
height: 50px;
|
149 |
+
font-size: 24px;
|
150 |
+
cursor: pointer;
|
151 |
+
transition: all 0.3s ease;
|
152 |
+
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
153 |
+
display: flex;
|
154 |
+
justify-content: center;
|
155 |
+
align-items: center;
|
156 |
+
text-decoration: none;
|
157 |
+
}
|
158 |
+
|
159 |
+
.back-button:hover {
|
160 |
+
background-color: #2980b9;
|
161 |
+
transform: scale(1.1);
|
162 |
+
}
|
163 |
+
|
164 |
+
.back-button i {
|
165 |
+
transition: transform 0.3s ease;
|
166 |
+
}
|
167 |
+
|
168 |
+
.back-button:hover i {
|
169 |
+
transform: translateX(-5px);
|
170 |
+
}
|
171 |
</style>
|
172 |
</head>
|
173 |
<body>
|
|
|
175 |
<source src="../static/paper.mp4" type="video/mp4">
|
176 |
Your browser does not support the video tag.
|
177 |
</video>
|
178 |
+
<a href="teacher" class="back-button" title="Back to Home">Back
|
179 |
+
<i class="fas fa-arrow-left"></i>
|
180 |
+
</a>
|
181 |
+
|
182 |
|
183 |
<div class="container">
|
184 |
<h1>Question Paper Generator</h1>
|