Last change
on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago |
Upload new project files
|
-
Property mode
set to
100644
|
File size:
1.8 KB
|
Rev | Line | |
---|
[f9c482b] | 1 | /* Reset some basic elements */
|
---|
| 2 | body, h2, table {
|
---|
| 3 | margin: 0;
|
---|
| 4 | padding: 0;
|
---|
| 5 | font-family: Arial, sans-serif;
|
---|
| 6 | }
|
---|
| 7 |
|
---|
| 8 | body {
|
---|
| 9 | background-color: #f4f4f4;
|
---|
| 10 | padding: 20px;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | .container {
|
---|
| 14 | width: 100%;
|
---|
| 15 | max-width: 1200px;
|
---|
| 16 | margin: 0 auto;
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | .card {
|
---|
| 20 | background-color: #fff;
|
---|
| 21 | border-radius: 5px;
|
---|
| 22 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
---|
| 23 | overflow: hidden;
|
---|
| 24 | margin-bottom: 20px;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | .card-header {
|
---|
| 28 | background-color: #007bff;
|
---|
| 29 | color: #fff;
|
---|
| 30 | padding: 15px;
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | .card-header h2 {
|
---|
| 34 | margin: 0;
|
---|
| 35 | font-size: 24px;
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | .card-body {
|
---|
| 39 | padding: 20px;
|
---|
| 40 | overflow-x: auto;
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | .table-container {
|
---|
| 44 | width: 100%;
|
---|
| 45 | border-collapse: collapse;
|
---|
| 46 | margin-top: 20px;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | .table-container tr {
|
---|
| 50 | background-color: #f9f9f9;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | .table-container tr:nth-child(odd) {
|
---|
| 54 | background-color: #f1f1f1;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | .table-container th, .table-container td {
|
---|
| 58 | padding: 10px;
|
---|
| 59 | border: 1px solid #ddd;
|
---|
| 60 | text-align: left;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | .table-container th {
|
---|
| 64 | background-color: #007bff;
|
---|
| 65 | color: #fff;
|
---|
| 66 | text-transform: uppercase;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | .table-container td img {
|
---|
| 70 | width: 10px;
|
---|
| 71 | height: auto;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | .table-container td {
|
---|
| 75 | vertical-align: middle;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | .table-container tr:hover {
|
---|
| 79 | background-color: #e2e2e2;
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | .make-admin-button {
|
---|
| 83 | border: none;
|
---|
| 84 | background-color: #007bff;
|
---|
| 85 | color: white;
|
---|
| 86 | width: 100%;
|
---|
| 87 | height: 28px;
|
---|
| 88 | display: flex;
|
---|
| 89 | align-items: center;
|
---|
| 90 | justify-content: center;
|
---|
| 91 | user-select: none;
|
---|
| 92 | text-decoration: none;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | .make-admin-button:hover {
|
---|
| 96 | background-color: rgb(255, 13, 13);
|
---|
| 97 |
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | .already-admin-button {
|
---|
| 101 | border: none;
|
---|
| 102 | background-color: transparent;
|
---|
| 103 | color: black;
|
---|
| 104 | width: 100%;
|
---|
| 105 | height: 28px;
|
---|
| 106 | display: flex;
|
---|
| 107 | align-items: center;
|
---|
| 108 | justify-content: center;
|
---|
| 109 | user-select: none;
|
---|
| 110 | text-decoration: none;
|
---|
| 111 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.