-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (69 loc) · 1.31 KB
/
styles.css
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
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 0;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
#authButtons {
margin-bottom: 20px;
}
button {
margin-right: 10px;
padding: 10px;
border: none;
background-color: #007bff;
color: #fff;
cursor: pointer;
border-radius: 4px;
font-size: 16px;
}
button:hover {
background-color: #0056b3;
}
#loginForm, #signupForm, #messageForm {
margin-top: 20px;
padding: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
}
input[type="text"], input[type="password"], textarea {
display: block;
margin-bottom: 10px;
padding: 8px;
width: 100%;
max-width: 400px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}
textarea {
height: 100px;
resize: vertical;
}
#messageList {
list-style-type: none;
padding: 0;
}
#messageList li {
background: #fff;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
display: flex;
}
/* Style pour les messages envoyés par Admin */
.admin-message {
color: red; /* Tous les messages envoyés par "Admin" s'affichent en rouge */
}
.message-author {
font-weight: bold;
margin-right: 10px;
}
.message-content {
color: #333;
}