_feedback.css
790 Bytes
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
/*
*提交页面
*/
.yoho-suggest-sub-page {
width: 100%;
height: 100%;
background: #f6f6f6;
.suggest-sub-form {
background: #fff;
width: 100%;
#suggest-textarea {
box-sizing: border-box;
width: 100%;
max-width: 100%;
min-width: 100%;
height: 420px;
max-height: 255px;
min-height: 255px;
padding: 30px;
font-size: 30px;
line-height: 48px;
color: #000;
display: block;
background: #fff;
border: none;
outline: none;
resize: none;
}
}
#submit-button {
width: 100px;
height: 40px;
border: 1px solid #e0e0e0;
}
}