-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (90 loc) · 1.5 KB
/
Copy pathstyles.css
File metadata and controls
106 lines (90 loc) · 1.5 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
97
98
99
100
101
102
103
104
105
106
.window
{
border:10px solid #4f4f4f;
position: absolute;
background-color: #c6c6c6;
width: 500px;
color: #686565;
display:none;
flex-direction: column;
}
.close_button
{
cursor: pointer;
width: 20px;
position: relative;
bottom: 60px;
left: 5px;
display: flex;
}
.hotbar_item
{
cursor: pointer;
position: absolute;
}
.header {
cursor: grab;
background-color: #898989;
width: 100%;
height: 30px;
position: relative;
flex-shrink: 0;
box-sizing: border-box;
}
.maximise_button
{
cursor: pointer;
width: 20px;
position: relative;
bottom: 80px;
left: 30px;
display: flex;
}
.window.maximized {
top: 0 !important;
left: 0 !important;
width: calc(100vw - 20px) !important;
height: calc(100vh - 20px) !important;
}
.content
{
margin-top: 30px;
height: calc(100% - 30px);
overflow: auto;
}
.content a {
display: block;
margin: 20px;
}
.header_text
{
display:flex;
align-items: center;
justify-content: center;
position: relative;
bottom: 20px;
}
.notes-container {
display: flex;
width: 100%;
height: calc(100% - 20px); /* subtract title bar */
margin-top: 10px;
}
#sidebar {
width: 150px;
background: #918f8d;
overflow-y: auto;
}
#notescontent {
flex: 1;
background: #898989;
overflow-y: auto;
padding: 0px;
}
#eaglercraft {
flex-direction: column;
}
#eaglercraftcontent {
flex: 1;
overflow: hidden;
}