-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathglobals.scss
107 lines (101 loc) · 3.35 KB
/
globals.scss
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
/* use local fonts */
/* roboto-300 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url('/fonts/roboto-v27-latin-300.eot'); /* IE9 Compat Modes */
src: local(''),
url('/fonts/roboto-v27-latin-300.eot?#iefix') format('embedded-opentype'),
/* IE6-IE8 */ url('/fonts/roboto-v27-latin-300.woff2') format('woff2'),
/* Super Modern Browsers */ url('/fonts/roboto-v27-latin-300.woff')
format('woff'),
/* Modern Browsers */ url('/fonts/roboto-v27-latin-300.ttf')
format('truetype'),
/* Safari, Android, iOS */ url('/fonts/roboto-v27-latin-300.svg#Roboto')
format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('/fonts/roboto-v27-latin-regular.eot'); /* IE9 Compat Modes */
src: local(''),
url('/fonts/roboto-v27-latin-regular.eot?#iefix')
format('embedded-opentype'),
/* IE6-IE8 */ url('/fonts/roboto-v27-latin-regular.woff2') format('woff2'),
/* Super Modern Browsers */ url('/fonts/roboto-v27-latin-regular.woff')
format('woff'),
/* Modern Browsers */ url('/fonts/roboto-v27-latin-regular.ttf')
format('truetype'),
/* Safari, Android, iOS */ url('/fonts/roboto-v27-latin-regular.svg#Roboto')
format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url('/fonts/roboto-v27-latin-500.eot'); /* IE9 Compat Modes */
src: local(''),
url('/fonts/roboto-v27-latin-500.eot?#iefix') format('embedded-opentype'),
/* IE6-IE8 */ url('/fonts/roboto-v27-latin-500.woff2') format('woff2'),
/* Super Modern Browsers */ url('/fonts/roboto-v27-latin-500.woff')
format('woff'),
/* Modern Browsers */ url('/fonts/roboto-v27-latin-500.ttf')
format('truetype'),
/* Safari, Android, iOS */ url('/fonts/roboto-v27-latin-500.svg#Roboto')
format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url('/fonts/roboto-v27-latin-700.eot'); /* IE9 Compat Modes */
src: local(''),
url('/fonts/roboto-v27-latin-700.eot?#iefix') format('embedded-opentype'),
/* IE6-IE8 */ url('/fonts/roboto-v27-latin-700.woff2') format('woff2'),
/* Super Modern Browsers */ url('/fonts/roboto-v27-latin-700.woff')
format('woff'),
/* Modern Browsers */ url('/fonts/roboto-v27-latin-700.ttf')
format('truetype'),
/* Safari, Android, iOS */ url('/fonts/roboto-v27-latin-700.svg#Roboto')
format('svg'); /* Legacy iOS */
}
/* main styling */
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
.coverImg {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url('../public/landing.jpg');
height: 500px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
}
.MuiCard-root {
display: flex;
flex-direction: column;
justify-content: space-between;
}