-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (51 loc) · 991 Bytes
/
Copy pathstyle.css
File metadata and controls
60 lines (51 loc) · 991 Bytes
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
.hero-container {
min-height: 100vh;
background-size: 125%;
background-image: url("./img/background.jpg");
background-repeat: no-repeat;
background-position: right;
display: flex;
align-items: center;
justify-content: flex-end;
}
.hero-contents {
background-color: #FFF3E380;
padding: 60px 40px;
float: right;
width: 44vw;
margin-right: 60px;
border-radius: 10px;
}
.hero-contents span {
font-size: 16px;
font-weight: 600;
margin-bottom: 4px;
}
.hero-contents h1 {
font-size: 52px;
font-weight: 700;
color: #B88E2F;
line-height: 65px;
}
.hero-contents p {
font-size: 18px;
font-weight: 500;
margin-top: 17px;
}
.hero-contents .button-container {
margin-top: 25px;
}
.hero-contents .button-container button {
padding: 25px 70px;
font-size: 16px;
font-weight: 700;
}
.cta {
background-color: #B88E2F;
color: white;
}
.sec-cta {
color: #B88E2F;
margin-left: 25px;
border: 2px dashed #B88E2F;
}