31b3e056
Виталий
page answer
|
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
.add-answer-forms {
margin-top: 27px;
.btn_ {
background: #fff !important;
position: relative;
box-shadow: none;
color: $main-color !important;
width: 184px;
padding-left: 48px;
&:before {
width: 22px;
height: 22px;
border-radius: 100%;
position: absolute;
top: 50%;
margin-top: -11px;
left: 11px;
content: '?';
color: #fff;
font-size: 13px;
line-height: 22px;
text-align: center;
@include gradientBtn;
z-index: 2;
}
&:hover {
&:before {
@include gradientBtnHover;
}
}
&:active {
box-shadow: 0px 0px 12px 0px rgba(151, 151, 151, 0.35);
}
}
}
.answers-category-list {
margin-top: 30px;
@include wfl;
background: $gray-color;
border-radius: 12px;
padding-top: 13px;
padding-bottom: 18px;
li {
float: left;
margin-top: 3px;
a {
text-decoration: none !important;
text-transform: uppercase;
float: left;
display: block;
font-size: 11px;
font-weight: 700;
padding: 0 11px;
color: $main-color;
span {
position: relative;
border-bottom: 1px dashed $blue-color;
}
&:hover {
span {
border-bottom: 1px dashed $gray-color;
}
}
}
&.active {
a {
color: #888888;
span {
border-bottom: 1px dashed #888888;
}
}
}
}
}
.answers-date-wr {
margin-top: 3px;
span {
float: left;
font-size: 12px;
color: #888888;
margin-right: 20px;
}
p {
float: left;
width: auto;
font-size: 13px;
a {
}
}
}
.hidden-answer-comment-form {
box-shadow: 0px 0px 24px 0px rgba(151, 151, 151, 0.35);
border-radius: 12px;
padding: 27px 15px 30px 15px;
margin-top: -44px;
position: relative;
background: #fff;
z-index: 2;
select {
cursor: pointer;
}
textarea {
min-height: 176px;
max-height: 176px;
}
.input-wr {
padding: 0;
}
form {
margin-top: 4px;
@include wfl;
}
}
.hidden-answer-comment-form-title {
text-align: center;
font-weight: 700;
text-transform: uppercase;
font-size: 18px;
}
|