-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrennsyuu3--2.21.css
59 lines (51 loc) · 882 Bytes
/
rennsyuu3--2.21.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
body {
font-family: Arial, sans-serif;
}
#header {
background-color: #ff6600;
color: #fff;
padding: 10px;
text-align: center;
}
#messages {
padding: 10px;
}
#message-list {
list-style-type: none;
margin: 0;
padding: 0;
}
#message-list li {
background-color: #f1f1f1;
border: 1px solid #ddd;
margin-bottom: 10px;
padding: 10px;
}
#form {
padding: 10px;
background-color: #f9f9f9;
border-top: 1px solid #ddd;
}
#message-input {
width: 80%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #fff;
font-size: 16px;
resize: none;
}
button[type="submit"] {
background-color: #ff6600;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
button[type="submit"]:hover {
background-color: #ff8533;
}