это кнопка которая показывается на версии сайта для пк, а на телефонах если зайти на сайт кнопку просто не видно. Возможно она как-то выходит за пределы экрана или что-то такое. Объясните что делать
<style>
body{
margin:0;
padding:0;
}
.toolbar{
z-index: 9999;
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: #222;
border-bottom: 1px solid #ccc;
}
.toolbar a{
color: #eee;
display: inline-block;
padding: 20px;
text-decoration: none;
font-family: Verdana;
}
.content{
margin-top: 50px;
padding: 10px;
}
}
@import url(https://fonts.googleapis.com/css?family=Roboto:700);
html, body{background : #FBC02D; font-family : Roboto; height: 100%; width: 100%; margin: 0;}
#holder{
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
background: red;
padding: 35px;
width: 65px;
margin: 0 auto;
position: relative;
margin-top : 0px;
margin-right : 700px;
transform: translateY(0);
transform: translateX(-765px);
box-shadow: 0px 3px 8px rgba(0,0,0,0.25);
border-radius: 0px;
}
.button {
background: white;
margin : -15px auto;
width : 135px;
height : 45px;
overflow: hidden;
text-align : center;
transition : .2s;
cursor : pointer;
border-radius: 3px;
box-shadow: 0px 1px 2px rgba(0,0,0,.2);
}
.btnTwo {
position : relative;
width : 200px;
height : 100px;
margin-top: -100px;
padding-top: 2px;
background : #222;
left : -250px;
transition : .3s;
}
.btnText {
color : black;
transition : .3s;
margin-top : 12px;
margin-right : 0px;
font-size: 18px;
}
.btnText2 {
margin-top : 58px;
margin-right : -165px;
color : #FFF;
}
.button:hover .btnTwo{ /*When hovering over .button change .btnTwo*/
left: -165px;
}
.button:hover .btnText{ /*When hovering over .button change .btnText*/
margin-left : 32px;
}
.button:active { /*Clicked and held*/
box-shadow: 0px 5px 6px rgba(0,0,0,0.3);
}
</style>
<div class="toolbar">
<div id="holder">
<div class="button" onclick="window.location.href = 'http://dnevnik.h1n.ru';">
<p class="btnText">Назад</p>
<div class="btnTwo">
<p class="btnText2">GO!</p>
</div>
</div>
</div>
</div>