-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobalStyle.tsx
91 lines (76 loc) · 1.77 KB
/
globalStyle.tsx
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
import { createGlobalStyle } from "styled-components";
const GlobalStyle = createGlobalStyle`
@font-face {
font-family: 'Bogle';
font-style: normal;
font-weight: 400;
src: url('/fonts/Bogle/BOGLEREGULAR.OTF') format('opentype');
}
@font-face {
font-family: 'Bogle';
font-style: italic;
font-weight: 400;
src: url('/fonts/Bogle/BOGLEITALIC.OTF') format('opentype');
}
@font-face {
font-family: 'Bogle';
font-style: normal;
font-weight: 700;
src: url('/fonts/Bogle/BOGLEBOLD.OTF') format('opentype');
}
@font-face {
font-family: 'Bogle';
font-style: italic;
font-weight: 700;
src: url('/fonts/Bogle/BOGLEBOLDITALIC.OTF') format('opentype');
}
@font-face {
font-family: 'Bogle';
font-style: normal;
font-weight: 900;
src: url('/fonts/Bogle/BOGLEBLACK.OTF') format('opentype');
}
@font-face {
font-family: 'Bogle';
font-style: italic;
font-weight: 900;
src: url('/fonts/Bogle/BOGLEBLACKITALIC.OTF') format('opentype');
}
* {
margin: 0;
padding: 0;
font-family: "Bogle", "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
list-style: none;
}
input {
border: 0 solid;
}
a,
a:visited,
a:hover,
a:active {
color: inherit;
text-decoration: none;
}
button {
border: 0;
cursor: pointer;
}
:root {
--WALMART-BLUE: #0071dc;
--WALMART-BLUE-DARK: #004f9a;
--WALMART-YALLOW: #ffc220;
}
.shadow-soft {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.border-bottom-gray {
border-bottom: 1px solid lightgray;
}
.border-top-gray {
border-top: 1px solid lightgray;
}
`;
export default GlobalStyle;