-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (59 loc) · 1.05 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (59 loc) · 1.05 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
#firepad {
background-color: orange !important;
/* dark orange background */
}
.powered-by-firepad {
display: none;
}
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
}
/* Height / width / positioning can be customized for your use case.
For demo purposes, we make the user list 175px and firepad fill the rest of the page. */
#userlist {
position: absolute;
left: 0;
top: 50px;
bottom: 0;
height: 100%;
width: 25%;
padding: 35px;
}
#firepad {
position: absolute;
left: 25%;
top: 0;
bottom: 0;
right: 0;
height: auto;
}
.firepad-toolbar{
background-color: #2b3350 !important;
}
#MyCommand{
font-size: large;
color: red;
padding: 0px;
}
@media only screen and (max-width: 600px) {
.container {
display: grid;
grid-template-columns: 35% 65%;
grid-gap: 10px;
margin:
}
#userlist {
padding: 10px;
width: 100%;
}
.firepad-userlist-users {
padding: 0px;
}
.firepad-userlist-user {
font-size: 8px;
}
}