-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
70 lines (70 loc) · 1.08 KB
/
form.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
#chat_form input {
margin: 5px;
}
header {
font-size: 3em;
font-weight: bold;
color: whitesmoke;
}
#chat_form {
margin-top: 2px;
}
#chat_form label {
text-align: center;
}
#chat_box {
padding: 20px 20px;
width: 90%;
}
.btn {
background-color: royalblue;
padding: 10px 20px;
}
.btn:hover {
cursor: pointer;
}
#user_comment {
padding: 5px 10px;
width: 90%;
}
#user_name {
padding: 5px 10px;
width: 80%;
}
#last_display {
padding: 5px 10px;
}
body {
background-color: teal;
}
label {
color: whitesmoke;
font-family: sans-serif;
font-size: 15px;
}
form {
background-color: darkslategrey;
padding: 25px;
border: none;
border-radius: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-left: 70px;
margin-right: 70px;
}
input {
border-radius: 5px;
border: none;
margin-bottom: 5px;
}
textarea {
border-radius: 5px;
border: none;
font-family: sans-serif;
}
.container {
display: flex;
}
.item {
margin-right: 30px;
width: 50%;
}