-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.03 KB
/
style.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
* {
font-family: "courier", sans-serif;
font-size: 20px;
}
#title {
display: flex;
justify-content: space-around;
font-size: 2em;
margin-bottom: -0.5em;
}
li {
display: block;
list-style: none;
cursor: pointer;
}
.box {
display: flex;
justify-content: space-around;
}
.container {
background-color: #f0f8ff;
display: flex;
justify-content: center;
flex-direction: column;
width: 40%;
height: 30%;
margin: 2em;
padding: 30px;
border-radius: 10px;
}
#sentence {
display: none;
}
#chatTest {
padding: 10px;
margin:10px;
}
input {
border:none;
cursor: pointer;
}
input:focus, textarea:focus {
outline: none;
border: 1px solid #FEC842; /* For browsers that don't support box-shadow */
-moz-box-shadow: 0 0 4px coral;
-webkit-box-shadow: 0 0 4px coral;
box-shadow: 0 0 4px coral;
}
button {
border-radius:1px;
border: none;
padding: 10px;
margin: 5px;
background-color: coral;
color: #fff;
cursor: pointer;
}
button:focus {
outline: none;
}