-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (38 loc) · 1.22 KB
/
style.css
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
@font-face {
font-family: 'TT Lakes';
src: url('fonts/TTLakes-Regular.eot');
src: local('fonts/TT Lakes Regular'), local('fonts/TTLakes-Regular'), url('fonts/TTLakes-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/TTLakes-Regular.woff') format('woff'), url('fonts/TTLakes-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'TT Lakes';
src: url('fonts/TTLakes-Bold.eot');
src: local('fonts/TT Lakes Bold'), local('fonts/TTLakes-Bold'), url('fonts/TTLakes-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/TTLakes-Bold.woff') format('woff'), url('fonts/TTLakes-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
body {
margin: 0;
padding: 0;
}
.page {
font-family: 'TT Lakes';
font-weight: normal;
display: flex;
flex-direction: column;
width: 100%;
}
.mobile-page {
font-family: 'TT Lakes';
font-weight: normal;
display: flex;
flex-direction: column;
justify-content: flex-start;
width: 320px;
min-height: 100vh;
box-shadow: 16px 0px 52px rgba(14, 24, 80, 0.2), -2px 0px 4px rgba(69, 79, 126, 0.02);
}
.mobile-page__footer {
margin-left: 24px;
}