This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
layout.css
123 lines (101 loc) · 2.13 KB
/
layout.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* This stylesheet is used for arranging things on the page.
It defines where things are, but not what they look like. */
/* Content alignment */
.tab-pane {
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
.tab-content-wrapper {
width: 200px;
flex-grow: 1;
padding-top: 20px;
}
.content-title {
width: 100%;
}
/* Search sidebar */
.tab-sidebar-inner {
width: 250px;
}
.tab-sidebar.visible {
width: 250px;
}
.tab-sidebar {
width: 0px;
overflow: hidden;
-webkit-transition: width 0.1s ease-in-out;
-moz-transition: width 0.1s ease-in-out;
-o-transition: width 0.1s ease-in-out;
transition: width 0.1s ease-in-out;
}
div.sidebar-toggle {
position: relative;
top: 15px;
left: -22px;
height: 0px;
width: 0px;
overflow: visible;
-webkit-transition: left 0.1s ease-in-out;
-moz-transition: left 0.1s ease-in-out;
-o-transition: left 0.1s ease-in-out;
transition: left 0.1s ease-in-out;
}
div.sidebar-toggle.sidebarvisible {
left: -41px;
}
button.sidebar-toggle {
height: 25px;
width: 25px;
}
/* Ribbon rack */
.ribbon-info-outer-wrapper {
position: relative;
width: 0;
height:0;
overflow: visible;
display: none;
}
.ribbon:hover .ribbon-info-outer-wrapper {
display: block;
}
.ribbon-info-inner-wrapper {
width: 400px;
pointer-events: none;
display: flex;
}
.right .ribbon-info-inner-wrapper {
transform: translate(-350px, calc(-20px - 100%));
justify-content: flex-end;
}
.left .ribbon-info-inner-wrapper {
transform: translate(50px, calc(-20px - 100%));
justify-content: flex-start;
}
.center .ribbon-info-inner-wrapper {
transform: translate(-150px, calc(-20px - 100%));
flex-direction: column;
align-items: center;
}
.ribbon-info {
background: #d6d6be;
width: auto;
display: inline-block;
pointer-events: none;
}
.ribbon {
float: left;
height: 30px;
}
.ribbon-image {
width: 100px;
height: 30px;
}
#ribbonrack {
display: flex;
justify-content: center;
flex-direction: row;
width: 300px;
flex-wrap: wrap;
overflow: visible;
}