-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmall-screens.css
50 lines (44 loc) · 962 Bytes
/
small-screens.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
@media screen and (max-width: 545px) {
header .title{
display: none;
}
.main-buttons {
margin-left: auto;
}
.main-button:not(.toggle).run{
margin-left: 30px;
}
.main-button.toggle.hot-keys{
display: none;
}
.task-list-showed #task-logs{
width: 100%;
}
#task-list{
position: absolute;
z-index: 1;
height: calc(100% - 40px);
background: inherit;
transition: transform 289ms ease;
}
body #task-list,.task-list-showed #task-list{
width: 80%;
}
header{
height: 40px;
}
.tabs {
transition: left 289ms ease;
position: absolute;
left: -32px;
top: 292px;
transform: rotate(90deg);
z-index: 2;
}
.task-list-showed .tabs {
left: calc(80% + 6px);
}
.main-button.toggle.resize {
display: none;
}
}