Skip to content

Commit c32d7df

Browse files
committed
Create back-button.blade.php
1 parent 17cd3dd commit c32d7df

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<style>
2+
.label-container{
3+
position:fixed;
4+
bottom:48px;
5+
right:105px;
6+
display:table;
7+
visibility: hidden;
8+
}
9+
10+
.label-text{
11+
color:#FFF;
12+
background:rgba(51,51,51,0.5);
13+
display:table-cell;
14+
vertical-align:middle;
15+
padding:10px;
16+
border-radius:3px;
17+
}
18+
19+
.label-arrow{
20+
display:table-cell;
21+
vertical-align:middle;
22+
color:#333;
23+
opacity:0.5;
24+
}
25+
26+
.float{
27+
position:fixed;
28+
width:60px;
29+
height:60px;
30+
bottom:40px;
31+
right:40px;
32+
background-color:#17a2b8;
33+
color:#FFF;
34+
border-radius:50px;
35+
text-align:center;
36+
box-shadow: 2px 2px 3px #111;
37+
}
38+
.float:hover{
39+
color: white;
40+
-webkit-filter: brightness(90%);
41+
}
42+
43+
.my-float{
44+
font-size:35px;
45+
margin-top:15px;
46+
}
47+
48+
a.float + div.label-container {
49+
visibility: hidden;
50+
opacity: 0;
51+
transition: visibility 0s, opacity 0.5s ease;
52+
}
53+
54+
a.float:hover + div.label-container{
55+
visibility: visible;
56+
opacity: 1;
57+
}
58+
</style>
59+
<a href="{{url('panel/config')}}" class="float">
60+
<i class="bi bi-arrow-left-short my-float"></i>
61+
</a>
62+
<div class="label-container">
63+
<div class="label-text">Go back</div>
64+
</div>

0 commit comments

Comments
 (0)