forked from FirefoxUX/StyleGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (92 loc) · 2.51 KB
/
index.html
File metadata and controls
116 lines (92 loc) · 2.51 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Firefox Style Guide</title>
<meta name="description" content="The Firefox Style Guide contains all the styles to build Firefox-y looking applications and webpages.">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
<link rel="stylesheet" type="text/css" href="static/style.css" />
<link rel="stylesheet" href="https://unpkg.com/tachyons/css/tachyons.min.css">
<style>
:root {
--blue-500: #2284e6;
--blue-700: #0670cc;
--blue-900: #005bab;
--green-500: #57bd35;
--green-700: #40a624;
--green-900: #399320;
--yellow-500: #ffcd02;
--red-500: #d92015;
--grey-500: #fbfbfb;
--grey-700: #ebebeb;
--grey-900: #d4d4d4;
--black-100: rgba(0, 0, 0, .1);
--black-300: rgba(0, 0, 0, .3);
--black-600: rgba(0, 0, 0, .6);
--black-900: rgba(0, 0, 0, .9);
}
.fira {
font-family: "Fira Sans";
}
.code {
font-family: "Fira Mono";
}
.white {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
.blue-500 {
color: var(--blue-500);
}
.black-30 {
color: var(--black-300);
}
.black-60 {
color: var(--black-600);
}
.black-90 {
color: var(--black-900);
}
.red-500 {
color: var(--red-500);
}
.green-500 {
color: var(--green-500);
}
.yellow-500 {
color: var(--yellow-500);
}
.bg-black-30 {
background-color: var(--black-300);
}
.bg-black-60 {
background-color: var(--black-600);
}
.bg-black-90 {
background-color: var(--black-900);
}
.bg-grey-700 {
background-color: var(--grey-700);
}
.bg-green-500 {
background-color: var(--green-500);
}
.bg-yellow-500 {
background-color: var(--yellow-500);
}
.bg-red-500 {
background-color: var(--red-500);
}
.bg-grey-500 {
background-color: var(--grey-500);
}
</style>
</head>
<body>
<div id="mount"></div>
<script src="static/bundle.js"></script>
<script src="https://firefoxux.github.io/SharedBanner/fxux-banner.min.js"></script>
</body>
</html>