Fix issues caused by custom cursor by replacing it with native cursor

This commit is contained in:
Benjamin Brasseur
2018-06-07 23:21:49 +02:00
parent 758b240881
commit fa760e9722
8 changed files with 84 additions and 105 deletions
+36 -27
View File
@@ -1,49 +1,58 @@
@font-face {
font-family: pcdown;
src: url('pdown.ttf');
font-family: pcdown;
src: url('pdown.ttf');
}
body {
font-family: roboto;
font-family: roboto;
}
#cursor {
position: absolute;
z-index: 999999;
display: none;
display: none;
}
#menu {
position: absolute;
top: 50%;
left: 50%;
position: absolute;
top: 50%;
left: 50%;
}
#menu {
display : flex;
flex-direction: column;
width : 500px;
height : 150px;
margin-top : -75px;
margin-left: -250px;
display: flex;
flex-direction: column;
width: 500px;
height: 150px;
margin-top: -75px;
margin-left: -250px;
}
#menu div {
display: flex;
flex-direction: row;
display: flex;
flex-direction: row;
}
#deposit_btn {
width : 250px;
height: 50px;
font-size: 2em;
width: 250px;
height: 50px;
font-size: 2em;
}
#deposit_amount {
width : 250px;
height : 50px;
font-size: 2em;
width: 250px;
height: 50px;
font-size: 2em;
}
#withdraw_btn {
width : 250px;
height: 50px;
font-size: 2em;
width: 250px;
height: 50px;
font-size: 2em;
}
#withdraw_amount {
width : 250px;
height : 50px;
font-size: 2em;
width: 250px;
height: 50px;
font-size: 2em;
}