-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.styl
65 lines (56 loc) · 1.1 KB
/
style.styl
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
.footer-nav
position absolute
right 2rem
bottom 0
color white
ul
list-style none
display flex
justify-content center
flex-direction column
padding 0
li
padding 0.5rem
display flex
justify-content center
cursor pointer
transition background-color 400ms ease-out
border-radius 50%
margin 0.6rem
position relative
&:hover
background-color rgba(255, 255, 255, 0.2)
&.active
background-color rgba(255, 255, 255, 0.2)
.popup-shortcut
position absolute
bottom -0.75rem
right 3rem
background-color rgba(255, 255, 255, 0.2)
width 20rem
cursor default
&::after
position absolute
content ''
width 0
height 0
right -10px
bottom 10px
border-top 10px solid transparent
border-bottom 10px solid transparent
border-left 10px solid rgba(255, 255, 255, 0.23)
ul
list-style none
li
display grid
grid-template-areas 'shortcut description'
grid-template-columns 6rem 1fr
border-radius unset
cursor default
&:hover
border-radius unset
background-color unset
span
text-align center
font-weight 500
margin-right 5px