CSS Testing
This commit is contained in:
@@ -157,6 +157,33 @@ body {
|
||||
.admin-container a.delete-link:hover {
|
||||
color: #c0392b;
|
||||
}
|
||||
|
||||
.admin-container a.edit-link {
|
||||
color: hsl(239, 78%, 57%);
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.admin-container a.edit-link:hover {
|
||||
color: #3a2bc0;
|
||||
}
|
||||
|
||||
.admin-container a.cancel-edit {
|
||||
padding: 8px 15px;
|
||||
border: none;
|
||||
background-color: #1f618d;
|
||||
color: #fff;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.admin-container a.cancel-edit:hover {
|
||||
background-color: #f39c12;
|
||||
}
|
||||
|
||||
|
||||
/* Login container */
|
||||
.login-container {
|
||||
max-width: 400px;
|
||||
|
||||
@@ -94,7 +94,7 @@ if (isset($_GET['delete'])) {
|
||||
<input type="text" name="room" value="<?php echo htmlspecialchars($subject['room']); ?>"><br>
|
||||
|
||||
<button type="submit" name="update">Salva modifiche</button>
|
||||
<a href="subjects.php" style="margin-left: 10px;">Annulla</a>
|
||||
<a id="cancel-edit" href="subjects.php" style="margin-left: 10px;">Annulla</a>
|
||||
</form>
|
||||
<hr>
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user