-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathides.scss
executable file
·81 lines (69 loc) · 1.97 KB
/
ides.scss
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
// IDES
//------------------------------------------------
//------------------------------------------------
.ides {
background: $gray-dark;
ul {
@include display(flex);
@include align-items(top);
@include justify-content(space-around);
li {
text-align: center;
position: relative;
&:nth-child(2n) {
width: 1px;
height: 94px;
background: $base-border-color-white;
}
a {
display: inline-block;
.bullet {
position: absolute;
top: -12px;
right: -14px;
background: $gray;
border-radius: 100%;
width: 24px;
height: 24px;
z-index: 10;
transition: $base-transition;
text-align: center;
img {
width: 16px;
height: 16px;
margin-top: 4px;
}
}
&.sublime {
.bullet {
top: -10px;
right: 0;
}
}
color: rgba(#fff, 0.5);
font-family: $heading-font-family;
img {
height: 56px;
width: auto;
margin-bottom: 6px;
opacity: 0.4;
transition: $base-transition;
}
span {
display: block;
font-size: $font-size-small;
}
&:hover {
img {
opacity: 1;
}
.bullet {
background: $brand-secondary;
}
color: #fff;
text-decoration: none;
}
}
}
}
}