-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisturber.less
73 lines (63 loc) · 1.67 KB
/
disturber.less
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
.forge-news-disturber {
display: block;
margin: 70px 0 0 0;
* {
transition: 300ms;
}
> .row {
background-color: #EAEAEA;
padding: 20px 40px 28px 40px;
.left {
.cta-light {
opacity: .5;
}
}
&:hover {
color: #333;
.right .cta-light .arrow {
width: 30px;
}
}
> div {
height: 44px;
}
.right {
display: flex;
align-items: center;
justify-content: right;
.cta-light {
display: flex;
align-items: center;
.arrow {
margin-left: 20px;
display: block;
width: 25px;
height: 1px;
background-color: white;
position: relative;
&:before, &:after {
width: 8px;
height: 1px;
background: white;
transform-origin: right center;
content: '';
display: block;
position: absolute;
right: 0;
top: 0;
}
&:before {
transform: rotate(-45deg);
}
&:after {
transform: rotate(45deg);
}
}
}
}
h4 {
margin-top: 0;
margin-bottom: 6px;
}
}
}