-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.css
More file actions
126 lines (111 loc) · 2.37 KB
/
Copy pathusers.css
File metadata and controls
126 lines (111 loc) · 2.37 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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 100%;
max-width: 1320px;
margin: 20px auto;
background-color: #eeeeee;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 30px rgb(15, 15, 15);
}
.container-change-password {
width: 70%;
max-width: 600px;
margin: auto;
background-color: #eeeeee;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 30px rgb(15, 15, 15);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
}
th, td {
padding: 8px 10px;
border: 1px solid #ddd;
text-align: left;
}
th {
background-color: #007bff;
color: white;
font-weight: bold;
text-transform: uppercase;
}
tbody tr:nth-child(even) {
background-color: #f2f2f2;
}
tbody tr:hover {
background-color: #bebeb0;
}
/* Styles pour le message "Aucun utilisateur enregistré." */
#user-list-container p {
text-align: center;
font-style: italic;
color: #777;
margin-top: 20px;
}
/* Styles pour le lien de retour */
.action-buttons .back-btn {
display: block;
text-align: center;
margin-top: 20px;
color: white;
text-decoration: none;
font-weight: bold;
border: 1px solid white;
background-color: #56a0f0;
}
/* Styles pour action-buttons et back-to-dashboard-btn */
.action-buttons {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.action-buttons .back-to-dashboard-btn {
padding: 12px 20px;
font-size: 1.1em;
border-radius: 5px;
cursor: pointer;
white-space: nowrap;
background-color: #03a93d;
color: white;
border: none;
}
.action-buttons .back-to-dashboard-btn:hover {
background-color: #5a6268;
transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
th, td {
padding: 8px 10px;
font-size: 0.9em;
}
}
.admin-privileges-btn {
background-color: #56a0f0;
color: black ;
font-weight: bold;
padding: 10px 15px;
border: none;
border-radius: 8px;
cursor: pointer;
margin-left: 20px;
}