-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtabletopaudio.css
More file actions
65 lines (55 loc) · 992 Bytes
/
tabletopaudio.css
File metadata and controls
65 lines (55 loc) · 992 Bytes
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
/* ------------------------------------ */
/* CSS */
/* Add your styles here */
/* ------------------------------------ */
#sidebar{
transition: all 0.5s ease-out;
height: 95%;
bottom:5%
}
#sidebar.TTA-abled{
height:50%;
}
.TTA-section,
.TTA-section.player {
width:300px;
height:5%;
overflow: hidden;
transition: all 0.5s ease-out;
position: fixed;
background: url("https://assets.tabletopaudio.com/img/nebula1b.jpg");
bottom:0%;
right: 5px;
display: flex;
justify-content: flex-start;
flex-direction: column;
box-shadow: 0px 0px 6px white;
color: white;
padding: 4px;
text-align: center;
overflow-y: hidden;
}
.TTA-section.expanded {
z-index: 300;
height:50%;
max-height: 200%;
}
.TTA-app {
height: 100%;
}
img.TTA-logo {
margin: 4px;
height:4vh;
}
input#TTAserverURL {
width: 95%;
margin-left:2%
}
button.start-server {
/* padding: 10px; */
margin-left:10%;
width:80%
}
.TTA-hidden {
display: none;
}