-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsimple.html
More file actions
65 lines (57 loc) · 1.61 KB
/
simple.html
File metadata and controls
65 lines (57 loc) · 1.61 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
<link rel="import" href="../polymer/polymer.html">
<!-- Include colors and UI -->
<link rel="import" href="colors.html" async>
<link rel="import" href="ui.html" async>
<style is="custom-style">
:root {
/**
* Simple Modal
*/
--simpla-simple-modal: {
box-shadow: var(--simpla-elevation-3);
border-radius: var(--simpla-border-radius);
};
--simpla-simple-modal-title: {
font-family: var(--simpla-font-family);
font-size: var(--simpla-scale-3);
font-weight: 400;
background: var(--simpla-primary-color);
color: white;
text-align: center;
padding: 0.75em 1.25em;
margin: 0;
};
--simpla-simple-modal-overlay: var(--simpla-light-black);
--simpla-simple-modal-close-color: var(--simpla-med-black);
/**
* Simple Callout
*/
--simpla-simple-callout: {
box-shadow: var(--simpla-elevation-1);
border-radius: var(--simpla-border-radius);
};
/**
* Simple Dropdown
*/
--simpla-simple-dropdown-menu: {
box-shadow: var(--simpla-elevation-2);
border-radius: var(--simpla-border-radius);
};
--simpla-simple-dropdown-menu-item: {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: var(--simpla-text-color);
font-size: var(--simpla-scale-00);
padding: 0.8em 1.5em;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
};
}
</style>