-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
application.scss
65 lines (53 loc) · 1.62 KB
/
application.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
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700|Arvo:400');
$font-family-sans-serif: Montserrat, Helvetica, Arial, sans-serif;
$font-family-serif: Arvo, Georgia, "Times New Roman", Times, serif;
$font-family-base: $font-family-serif;
$headings-font-family: $font-family-sans-serif;
$body-color: rgba(28, 13, 10, 0.7);
$headings-color: rgba(28, 13, 10, 0.7);
$theme-colors: (
"primary": #ff745c
);
$enable-rounded: false;
@import "bootstrap";
@import "guests";
@import "welcome";
h1 {
font-size: 60px;
font-weight: 700;
letter-spacing: 0.0833333em;
text-transform: uppercase;
}
h2 {
color: theme-color("primary");
font-size: 28px;
font-weight: 700;
line-height: 1.5em;
letter-spacing: 0.0833333em;
text-transform: uppercase;
svg {
fill: currentColor;
margin: 0 auto;
height: 100px;
}
}
.wedding-cta-btn {
letter-spacing: 2px;
padding: 0.75rem 1.5rem;
}
.wedding-required {
color: theme-color("primary");
}