-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
65 lines (57 loc) · 1 KB
/
styles.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
* {
margin: 0;
padding: 0;
}
.main {
position: relative;
background-image: url('../public/bg.png');
background-size: cover;
height: 100vh;
width: 100vw;
color: rgba(255, 255, 255, 0.9);
.hero-section {
width: 48rem;
position: fixed;
top: 23%;
left: 4%;
}
.ghost_btn {
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
color: #fff;
border: 2px solid #fff;
padding: 0.65em 1.7em;
display: inline-block;
overflow: hidden;
border-radius: 2px;
transition: all 0.6s ease 0s;
cursor: pointer;
}
// .ghost_btn:hover {
// background: #fff;
// color: #000;
// }
h1 {
font-size: 3rem;
letter-spacing: 0.1rem;
margin-bottom: 0.5rem;
span {
font-size: 2.2rem;
}
}
h3 {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 1rem;
}
p {
line-height: 1.5rem;
margin-bottom: 1.75rem;
}
.footer {
position: fixed;
bottom: -15px;
left: 40%;
}
}