-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared-styles.html
132 lines (110 loc) · 2.42 KB
/
shared-styles.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
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
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,700,700i">
<dom-module id="shared-styles">
<template>
<style>
:host
{
--normal-font-family: "Roboto Condensed", "Roboto", "Noto", sans-serif;
--normal-font-weight: normal;
--normal-font-style: normal;
--heading-font-family: "Roboto Condensed", "Roboto", "Noto", sans-serif;
--heading-font-weight: bold;
--heading-font-style: italic;
--subheading-font-family: "Roboto Condensed", "Roboto", "Noto", sans-serif;
--subheading-font-weight: bold;
--subheading-font-style: normal;
--menu-font-family: "Roboto Condensed", "Roboto", "Noto", sans-serif;
--menu-font-weight: bold;
--menu-font-style: normal;
font-family: var(--normal-font-family);
font-weight: var(--normal-font-weight);
font-style: var(--normal-font-style);
}
[hidden]
{
display: none !important;
}
ul,
ol
{
margin-top: 0px;
}
/* links: link-visited-hover-active */
a
{
transition: background-color 0.3s ease 0s, color 0.1s ease 0s;
}
a:link
{
color: var(--color-blue);
}
a:visited
{
color: var(--color-blue-dark);
}
a:link:hover
{
background-color: var(--color-blue);
color: white;
}
a:visited:hover
{
background-color: var(--color-blue-dark);
color: white;
}
a.plain
{
text-decoration: none;
color: black;
}
a.plain:link:hover
{
text-decoration: underline;
background-color: var(--color-blue);
color: white;
}
a.plain:visited:hover
{
text-decoration: underline;
background-color: var(--color-blue-dark);
color: white;
}
a.button
{
display: inline-block;
border-radius: 5px;
padding: 3px 4px 3px 4px;
margin-top: 6px;
font-size: 90%;
text-decoration: none;
white-space: pre;
}
a.button:link
{
border: 1px solid var(--color-blue);
background-color: white;
color: var(--color-blue);
}
a.button:visited
{
border: 1px solid var(--color-blue-dark);
background-color: white;
color: var(--color-blue-dark);
}
a.button:link:hover
{
background-color: var(--color-blue);
color: white;
}
a.button:visited:hover
{
background-color: var(--color-blue-dark);
color: white;
}
a.button + a.button
{
margin-left: 6px;
}
</style>
</template>
</dom-module>