-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment.css
More file actions
102 lines (83 loc) · 1.55 KB
/
Copy pathcomment.css
File metadata and controls
102 lines (83 loc) · 1.55 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#box{
width: 80%;
height: 76px;
border-radius: 6px;
border-color: #b6b7b8;
}
#style {
margin-left: 10px;
color: rgb(129, 127, 127);
}
#comment{
width: 80%;
height: 65px;
border-width: 0;
outline: none;
resize: none;
overflow: hidden;
margin-bottom: 8px;
}
.parent{
width: 75%;
margin: 4px;
}
.btn {
border-color: #b6b7b8;
border-radius: 10px;
color: #b6b7b8;
font-size: 14px;
border-style: solid;
cursor: pointer;
font-weight: 400;
font-style: normal;
width: 5%;
height: 37px;
position: absolute;
margin-top: 10px;
margin-right: 3%;
margin-left: 5%;
border-width:2px;
background-color: white;
text-align: center;
}
.btn:focus,
.btn:active{
outline: 0;
}
@media(max-width:1200px){
#box{
height: 70px;
}
#comment{
height: 53px;
}
.btn {
margin-right: 3%;
font-size: 12px;
width: 55px;
height: 30px;
}
.parent{
width: 85%;
}
}
@media(max-width:700px){
.btn{
margin-right: 5px;
}
#comment{
width: 70%;
height: 50px;
}
}
@media(max-width:380px){
.btn{
border-radius: 6px;
font-size: 10px;
width: 45px;
height: 25px;
margin-top: 15px;
margin-right: 3%;
margin-left: 5%;
border-width:1px;
}