-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.css
More file actions
96 lines (89 loc) · 2 KB
/
mobile.css
File metadata and controls
96 lines (89 loc) · 2 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
.beavers-mobile.virtual-gamepad{
width:140px;
height:140px;
border-radius:20px;
z-index:1000;
border:1px groove white;
position:absolute;
top:0px;
left:0px;
background-color:rgba(0,0,0,0.1)
}
.beavers-mobile.virtual-gamepad .drag{
position:absolute;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
width: 40px;
height: 40px;
border-radius:20px;
background: red;
cursor:move;
top:50px;
left:50px
}
.beavers-mobile.sheet.actor.character {
min-width:300px;
width:500px;
}
.beavers-mobile.sheet .sheet-navigation .item[data-tab=biography]{
display:none;
}
.beavers-mobile.sheet .window-content .tab[data-tab=biography]{
display:none;
}
.beavers-mobile.sheet .attributes .hit-dice{
display:none;
}
.beavers-mobile.sheet .attributes .initiative{
display:none;
}
.beavers-mobile.sheet .sheet-header .summary{
display:none;
}
.beavers-mobile.dnd5e.sheet.actor .sheet-header h1.charname input{
margin:0px 10px;
}
.beavers-mobile.sheet .attribute-footer .rest{
display: inline-block;
margin: 0 2px 0 0;
padding: 0 3px;
font-size: 10px;
line-height: 16px;
border: 1px solid #999;
border-radius: 3px;
background: rgba(0, 0, 0, 0.05);
text-align:center;
flex:0 0 50px;
}
.beavers-mobile.sheet .sheet-header .image{
max-width:140px;
flex:0 0 140px;
position:relative;
}
.beavers-mobile.sheet.actor.character .sheet-header img.profile {
flex: 0 0 140px;
max-width: 140px;
height: 140px;
}
.beavers-mobile.sheet .sheet-header .image .moving{
position:absolute;
font-size:x-large;
left:58px;
width:24px;
height:24px;
top:58px;
color:grey;
}
.beavers-mobile.sheet .sheet-header .image .moving.up{
top:0px;
}
.beavers-mobile.sheet .sheet-header .image .moving.down{
top:116px;
}
.beavers-mobile.sheet .sheet-header .image .moving.left{
left:0px;
}
.beavers-mobile.sheet .sheet-header .image .moving.right{
left:116px;
}