-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
76 lines (65 loc) · 1 KB
/
style.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
66
67
68
69
70
71
72
73
74
75
76
/**
* Theme Name: Fake Editor
* Description: Simulates the wp-admin post editor for unauthenticated users
* Author Name: Andrew Duthie
* Author URI: http://andrewduthie.com
*/
body {
margin: 0;
}
.toolbar,
.sidebar {
background-color: #23282d;
}
.toolbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 32px;
z-index: 99999;
}
.sidebar,
.metadata {
position: fixed;
top: 32px;
bottom: 0;
}
.sidebar {
left: 0;
width: 160px;
}
.metadata {
right: 0;
width: 280px;
border-left: 1px solid #e1e5e9;
}
.sidebar__selected {
position: relative;
height: 34px;
margin-top: 45px;
background-color: #0073aa;
}
.sidebar__selected::after {
content: '';
position: absolute;
top: 50%;
right: 0;
margin-top: -8px;
height: 0;
width: 0;
border: 8px solid transparent;
pointer-events: none;
border-right-color: #fff;
}
.sidebar__selected-submenu {
background-color: #32373c;
height: 122px;
}
.content {
margin: 32px 280px 0 160px;
padding: 20px;
}
body.admin-bar .content {
margin-top: 0;
}