-
Notifications
You must be signed in to change notification settings - Fork 3
/
medium-screens.css
83 lines (78 loc) · 1.75 KB
/
medium-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
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
@media screen and (max-width: 923px) {
.wrapper {
max-width: 100%;
}
body {
padding: 0;
}
.tasks-button{
position: absolute;
left: 0;
top: 0;
display: block;
background: transparent;
border: none;
padding: 6px 10px;
border-radius: 0;
color: #4e4e4e;
font-size: 24px;
cursor:pointer;
z-index: 10;
}
.tasks-button > .fas:before{
content: "\f0c9";
}
.task-list-showed .tasks-button > .fas:before{
content: "\f00d";
}
header .title {
padding-left: 50px;
}
#task-list {
transform: translateX(-100%);
width: 0;
}
#task-logs {
width: 100%;
}
.task-list-showed #task-list {
transform: translateX(0);
}
.task.new-task, .task-list-showed #task-list{
width: 30%;
}
.active-tab-procfile .task.new-task,.active-tab-procfile .task.new-task.show{
transform: scaleY(.6) translateY(58px);
}
.task-list-showed .active-tab-procfile .task.new-task{
transform: none
}
.task-list-showed #task-logs {
width: 70%;
}
.task-list-showed .tabs {
position: absolute;
left: calc(30% + 12px);
top: 37px;
transform: rotate(0deg);
z-index: 2;
}
.task-list-showed .tab {
border-radius: 0 0 8px 8px;
}
.logs-container {
padding-top: 27px;
}
.scrolling > .task-data {
top: 45px;
}
.main-button.toggle{
min-width: 40px;
}
.main-button.toggle span{
display: none;
}
.task-list-showed .active-tab-procfile .task.new-task.show {
transform: translateY(-128px);
}
}