forked from jarrodek/ChromeRestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared-styles.html
More file actions
72 lines (59 loc) · 1.26 KB
/
Copy pathshared-styles.html
File metadata and controls
72 lines (59 loc) · 1.26 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
<!-- shared styles for all elements and index.html -->
<dom-module id="shared-styles">
<template>
<style>
:host {
}
.page-title {
@apply(--paper-font-display2);
}
paper-menu a > *,
paper-menu paper-item > *,
paper-menu paper-icon-item > * {
pointer-events: none;
}
.padding-section {
@apply(--section-padding);
}
.action-button {
@apply(--action-button);
}
.action-button:hover {
@apply(--action-button-hover);
}
/*.xhr-switch {
@apply(--layout-center);
}*/
@media (max-width: 600px) {
.page-title {
font-size: 24px!important;
}
}
.selectable-text {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
cursor: text;
}
.flex {
@aplly(--layout-flex);
}
.termination-banner {
cursor: pointer;
height: 40px;
padding: 0 12px;
@apply --layout-horizontal;
@apply --layout-center;
@apply --paper-font-body1;
color: #ffffff;
background-color: #4CAF50;
}
.termination-banner iron-icon {
width: 16px;
height: 16px;
margin-left: 12px;
}
</style>
</template>
</dom-module>