-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.scss
88 lines (81 loc) · 1.58 KB
/
App.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
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css?family=PT+Serif:400,700');
@import "variables.scss";
* { box-sizing: border-box; font-family: $sans; }
html {
min-width: 320px;
}
body, h1, h2, h3, p { margin: 0; padding: 0; font-weight: 400;}
a {
color: $teal;
text-decoration: none;
}
.desktop { display: none;
@include desktop() { display: block }
}
.mobile { display: block;
@include desktop() { display: none; }
}
.App {
background-repeat: no-repeat;
background-size: 300%;
background-position-x: 50%;
background-position-y: 70px;
text-align: center;
@include desktop() {
background-size: 100%;
background-position-y: 61px;
}
section {
background: white !important;
border: 1px solid $borderColor;
margin: $padding;
padding: calc(#{$padding}*2);
@include desktop() {
max-width: 715px;
margin: $padding auto;
}
}
}
h1 {
color: $primaryText;
font-family: $serif;
}
h2 {
color: $primaryText;
font-size: 18px;
font-family: $serif;
}
h3 {
font-size: 16px;
font-family: $serif;
}
hr {
margin: calc(#{$padding} * 4) 0;
border-color: white;
}
.Footer {
height: 120px;
background-color: $lightGrayBg;
padding: calc(#{$padding} * 1.5);
@include desktop() {
padding: $padding 20%;
}
div {
float: left;
text-align: left;
font-size: 12px;
p, a {
color: $lightGrayText;
text-decoration: none;
}
}
.logo {
width: 80px;
}
.social {
float: right;
width: 27px;
margin-left: $padding;
}
}