-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.css
73 lines (57 loc) · 837 Bytes
/
site.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
body {
text-align: center;
margin: auto;
background-color: white;
/* width: 60%; */
}
h1 {
color: #55f;
font-size: 3em
}
a:link, a:visited {
color: #33B;
}
a:hover {
color: #BB3;
}
a:active {
background-color: black;
color: white;
}
form {
border: none;
margin: auto;
padding: 16px;
text-align: center;
}
p {
font-size: 12px;
}
footer p {
font-size: 8px;
}
#chatbox, form {
width: 320px;
margin: auto;
}
#input {
width: 100%;
}
.output-text {
color: #0863bb;
font-weight: bold;
text-align: left;
}
.input-text {
text-align: left;
}
.button {
background-color: #aaf;
color: #44f;
margin: 2px;
padding: 3px 12px;
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
}