This repository has been archived by the owner on Oct 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
137 lines (113 loc) · 1.98 KB
/
app.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
html,
body {
font-family: 'Roboto', 'Helvetica', sans-serif;
}
.table-child {
position: relative;
overflow-y: hidden;
opacity: 0;
height: 0;
transition: all 0.20s ease-out;
}
.table-child.expanded {
overflow-y: visible;
opacity: 1;
height: 100%;
transition: all 0.15s;
}
.cell-leaf {
font-weight: 500;
text-align: right;
white-space: pre-wrap;
}
.mdl-layout__header-row {
padding: 0 20px;
}
.mdl-layout__content {
padding: 20px;
}
.mdl-data-table th {
cursor: pointer;
}
.mdl-data-table td {
vertical-align: top;
}
td > .mdl-button {
margin-right: 10px;
}
#content {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-content: flex-start;
}
#title {
background: url("images/android-icon-48x48.png") no-repeat 0% 50%;
width: 96px;
height: 96px;
}
#section-source {
width: calc(100% - 220px);
}
#section-source > .mdl-textfield {
width: calc(100% - 50px);
}
#section-source > .mdl-textfield>.mdl-textfield__label {
color: rgba(255, 255, 255, 0.4);
}
#section-source > .mdl-textfield>.mdl-textfield__label:after {
background-color: rgba(255, 255, 255, 0.4);
}
#section-source > .mdl-button {
padding-left: 20px;
}
#section-filter {
flex: 0 1 auto;
align-self: baseline;
}
#section-buttons {
flex: 0 1 auto;
align-self: baseline;
margin-bottom: 20px;
}
#section-buttons>.mdl-button {
width: 150px;
text-align: left;
}
#section-dump {
flex-basis: 100%;
overflow-x: auto;
}
#progress {
width: 100%;
}
#scrollup {
position: fixed;
right: 40px;
bottom: 20px;
opacity: 0;
transition: opacity 0.7s;
}
/* MDL button icon hack */
#scrollup > .mdl-button > .material-icons {
transform: none;
top: 17px;
left: 17px;
}
@media screen and (min-width: 1024px) {
.mdl-data-table,
.mdl-data-table th,
.mdl-data-table td {
font-size: medium;
}
}
@media screen and (max-width: 640px) {
#title {
background: url("images/android-icon-36x36.png") no-repeat 50% 50%;
width: 36px;
height: 36px;
}
#section-source {
width: calc(100% - 80px);
}
}