mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 09:48:52 +00:00
49 lines
706 B
CSS
49 lines
706 B
CSS
@font-face {
|
|
font-family: pcdown;
|
|
src: url('pdown.ttf');
|
|
}
|
|
body {
|
|
font-family: roboto;
|
|
}
|
|
#cursor {
|
|
position: absolute;
|
|
z-index: 999999;
|
|
display: none;
|
|
}
|
|
#menu {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
}
|
|
#menu {
|
|
display : flex;
|
|
flex-direction: column;
|
|
width : 500px;
|
|
height : 150px;
|
|
margin-top : -75px;
|
|
margin-left: -250px;
|
|
}
|
|
#menu div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
#deposit_btn {
|
|
width : 250px;
|
|
height: 50px;
|
|
font-size: 2em;
|
|
}
|
|
#deposit_amount {
|
|
width : 250px;
|
|
height : 50px;
|
|
font-size: 2em;
|
|
}
|
|
#withdraw_btn {
|
|
width : 250px;
|
|
height: 50px;
|
|
font-size: 2em;
|
|
}
|
|
#withdraw_amount {
|
|
width : 250px;
|
|
height : 50px;
|
|
font-size: 2em;
|
|
} |