-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsc-header.css
More file actions
96 lines (92 loc) · 1.68 KB
/
sc-header.css
File metadata and controls
96 lines (92 loc) · 1.68 KB
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
:host {
display: none; /* bug: when initiated as none its not select tab */;
font-family: 'RobotoDraft', sans-serif;
background: #47CACC;
padding-bottom: 12px;
}
/*
:host /deep/ #ink, :host /deep/ #selectionBar, :host /deep/ #onRadio {
color: #FED359;
}
*/
/* To ensure your styling works under the Shadow DOM polyfill, see
www.polymer-project.org/docs/polymer/styling.html#directives */
polyfill-next-selector { content: ':host > h2'; }
::content h2 {
color: blue;
}
.container-header {
height: 100%;
}
core-toolbar {
background: #47CACC;
color: white;
min-height: 64px;
}
core-toolbar paper-icon-button {
vertical-align: middle;
}
#tabs {
width: 100%;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-transform: uppercase;
}
#tabs core-icon {
margin-right: 8px;
}
.menu-label {
display: none;
}
#search {
color: rgba(255, 255, 255, 0.8);
font-weight: 100;
font-size: 16px;
}
.issues-info {
font-weight: 300;
font-size: 12px;
line-height: 18px;
}
.issues-info label {
display: inline;
color: #2A7A7C;
font-weight: 400;
margin-left: 6px;
}
.issues-info label.first-child {
margin-left: 0px;
}
.issues-info span {
display: block;
}
.issues-info .issues-header {
font-size: 13px;
}
.issues-info .issues-details {
text-transform: uppercase;
display: inline;
color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 481px) {
#tabs {
/* width: 200px; */
}
.issues-info .issues-header {
font-size: 19px;
}
.issues-info {
font-weight: 300;
font-size: 16px;
line-height: 26px;
}
.container {
width: 400px;
}
.menu-label {
display: block;
}
}