-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (73 loc) · 1.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
article {
display: flex;
flex-direction: column;
background-color: #FBEDDD;
}
.question {
display: none;
}
#answer {
display: none;
width:300px;
height: 200px;
vertical-align: middle;
}
.input-div {
vertical-align: middle;
}
.result {
display: none;
}
.chat_title {
margin-left: auto;
margin-right: auto;
margin-top: 55px;
margin-bottom: 55px;
}
.white_box {
width: 320px;
background-color: white;
margin-left: auto;
margin-right: auto;
border-radius: 10px;
padding: 25px;
font-size: 16px;
}
.keyword {
margin-left: auto;
margin-right: auto;
font-size: 16px;
}
.save_btn {
background-color: #E48F2A;
margin-left: auto;
margin-right: auto;
margin-bottom: 34px;
width: 320px;
height: 56px;
border: none;
border-radius: 10px;
font-size: 20px;
}
.bottom_menu {
position: fixed;
width: 100%;
height: 70px;
/* margin: 0 auto; */
bottom: 0px;
background-color: white
}
.bottom_menu>div {
float:left;
width: 20%;
height: 100%;
text-align: center;
margin: 0 auto;
padding-top: 20px;
}
.bottom_menu>div>img {
float: center;
}
* {
font-family: 'Song Myung', serif;
}