Skip to content

Commit 12fbf3e

Browse files
committed
added
2 parents 08b05d0 + 13ef4bd commit 12fbf3e

File tree

4 files changed

+148
-221
lines changed

4 files changed

+148
-221
lines changed

__pycache__/models.cpython-312.pyc

0 Bytes
Binary file not shown.

models.py

-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ class Admin(db.Model, UserMixin):
5353
name = db.Column(db.String(100), nullable=False) # Retain name from the master branch
5454
email = db.Column(db.String(100), unique=True, nullable=False) # Retain email from the master branch
5555
password_hash = db.Column(db.String(128), nullable=False) # Use password_hash from add-admin-login
56-

static/style.css

+32
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,35 @@ footer {
136136
.social-icon img:hover {
137137
transform: scale(1.2);
138138
}
139+
140+
/* Styles for interactive cards and buttons */
141+
.card {
142+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
143+
border-radius: 12px;
144+
color: black !important;
145+
}
146+
147+
.btn-primary, .btn-danger {
148+
transition: transform 0.2s ease-in-out;
149+
}
150+
151+
.btn-primary:hover, .btn-danger:hover {
152+
transform: scale(1.05);
153+
}
154+
155+
.table th, .table td {
156+
vertical-align: middle;
157+
text-align: center;
158+
}
159+
160+
.btn-warning {
161+
color: #fff;
162+
}
163+
164+
.card-body, .card-title, .form-label, input {
165+
color: black !important;
166+
}
167+
168+
.card p-4 {
169+
background-color: black;
170+
}

0 commit comments

Comments
 (0)