-
Notifications
You must be signed in to change notification settings - Fork 0
/
gl-size.html
72 lines (65 loc) · 2.09 KB
/
gl-size.html
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
<link rel="import" href="../polymer/polymer.html">
<!--
`gl-color`
gl-color for web components
@demo demo/index.html
-->
<dom-module id="gl-size">
<template>
<style>
:root {
--font-size-default: 16px;
--font-size-large: calc(var(--font-size-default) * 1.25);/*// ~20px*/
--font-size-small: calc(var(--font-size-default) * 0.85); /*// ~14px*/
--font-size-h1: calc(var(--font-size-default) * 2.6); /*// ~42px*/
--font-size-h2: calc(var(--font-size-default) * 2.15); /*// ~34px*/
--font-size-h3: calc(var(--font-size-default) * 1.7); /*// ~27px*/
--font-size-h4: calc(var(--font-size-default) * 1.25); /*// ~20px*/
--font-size-h5: var(--font-size-default); /*// ~16px*/
--font-size-h6: var(--font-size-small); /*// ~14px*/
--gl-font-family: {
font-family: 'tahoma', sans-serif;
-webkit-font-smoothing: antialiased;
}
--gl-margin: {
margin: 1px;
}
}
.gl-ex-large {
font-size: calc(var(--font-size-default) * 2);
padding: 14px 16px 14px 16px;
margin: var(--gl-margin);
@apply --gl-font-family;
}
.gl-large {
font-size: var(--font-size-h3);
padding: 10px 16px 10px 16px;
margin: var(--gl-margin);
@apply --gl-font-family;
}
.gl-default {
font-size: var(--font-size-large);
padding: 6px 12px 6px 12px;
margin: var(--gl-margin);
@apply --gl-font-family;
}
.gl-small {
font-size: var(--font-size-large);
padding: 5px 10px 5px 10px;
margin: var(--gl-margin);
@apply --gl-font-family;
}
.gl-ex-small {
font-size: var(--font-size-large);
padding: 1px 8px 1px 8px;
margin: var(--gl-margin);
@apply --gl-font-family;
}
</style>
</template>
<script>
Polymer({
is: 'gl-size',
});
</script>
</dom-module>