-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (82 loc) · 1.44 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: system-ui, Ubuntu, Droid Sans, sans-serif;
}
.app {
display: flex;
height: 100%;
}
.column {
height: 100%;
min-width: 200px;
border: 0;
overflow-y: hidden;
}
.statusbar {
display: flex;
justify-content: space-between;
position: fixed;
bottom: 0;
width: 100%;
height: 22px;
background-color: rgb(0, 33, 43);
color: rgb(147, 161, 161);
/* TODO Don't overlap the editors, but leave a gap at the bottom */
z-index: 9999;
}
.left-items,
.right-items {
display: flex;
}
.right-items {
flex-direction: row-reverse;
}
.statusbar-item {
margin: 0 10px;
}
.column_name {
display: flex;
box-sizing: border-box;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 11px 0;
left: auto;
border-right: 1px solid rgb(0, 56, 71);
background-color: rgb(0, 64, 82);
color: rgba(147, 161, 161);
overflow: hidden;
padding-left: 11px;
cursor: pointer;
}
.column_name:hover {
background-color: #347890;
}
.button {
position: fixed;
z-index: 9999;
right: 8px;
bottom: 31px;
overflow: hidden;
border-radius: 4px;
padding: 22px;
background: rgb(0, 43, 56);
color: rgba(147, 161, 161);
box-shadow: rgba(0, 0, 0, 0.36) 0px 0px 8px 2px;
}
.button:hover {
background-color: #347890;
cursor: pointer;
}
.no-select {
user-select: none;
-webkit-user-select: none;
/* Safari */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* IE/Edge */
}