blob: c8e1208f7b00e0aa5a1d9f5a5692764cb3500aac (
plain)
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
|
/* responsive design */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
.hide-tablet {
display: none;
}
body {
font-size: 0.9em;
}
.project-menu {
font-size: 0.8em;
}
.task-board-title {
font-size: 1.5em;
}
}
@media only screen and (max-width : 768px) {
.hide-tablet {
display: none;
}
body {
font-size: 0.85em;
}
.logo,
.project-menu {
display: none;
}
nav li:first-child {
padding-left: 0;
}
.username {
display: block;
text-align: right;
}
.user-show-sidebar,
.project-show-sidebar,
.task-show-sidebar {
width: 200px;
}
.user-show-main,
.project-show-main,
.task-show-main {
margin-left: 230px;
}
table input[type="text"] {
width: 150px;
}
.task-score {
display: none;
}
.task-board-title {
font-size: 1.5em;
}
}
|