-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEXT-Bard.css
65 lines (57 loc) · 897 Bytes
/
EXT-Bard.css
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
#EXT_BARD {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 9999;
background-color: black;
}
#EXT_BARD-Container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
align-items: center;
}
#EXT_BARD-TopBar {
height: 100px;
width: 100%;
background-color: black;
display: flex;
align-items: center;
}
#EXT_BARD-Status {
height: 64px;
width: 64px;
}
#EXT_BARD-Text {
flex: 1 auto;
color: white;
margin: 10px;
}
#EXT_BARD-Content {
display: flex;
align-items: center;
background-color: #303030;
border-radius: 24px;
width: 95%;
height: 85%;
padding: 24px;
}
#EXT_BARD-Box {
height: 95%;
width: 80%;
border-radius: 12px;
background: black;
margin-left: auto;
margin-right: auto;
padding: 1em;
}
#EXT_BARD-Webview {
width: 100%;
height: 100%;
}
#EXT_BARD.hidden {
display:none;
}