-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·60 lines (60 loc) · 1.25 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* hero background image */
.bgimage {
height: 100vh;
background: url('https://i.postimg.cc/d32FcffZ/Love-Pray-Exhale-Banner.png');
background-size: cover;
position: relative;
}
/* text css above hero image*/
.hero_title {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
margin-top: 160px;
}
.hero_desc {
font-family: 'Gruppo', cursive;
font-size: 25px;
margin-bottom: 20px;
color: #333333;
text-decoration: none;
width: 60%;
justify-content: center;
}
.hero-text {
text-align: center;
position: absolute;
top: 70%;
left: 60%;
width: 80%;
transform: translate(-50%, -50%);
color: white;
}
.button-link {
display: inline-block;
padding: 10px 20px;
background-color: #CCCCFF;
color: #fff;
text-decoration: none;
border-radius: 4px;
border: 1px solid #fff;
opacity: 1.2; /* add opacity */
}
.button-link:hover {
background-color: #fff;
/*color: #007ACC;*/
text-decoration: none;
opacity: 1; /* make it opaque on hover */
}
.nav-link {
color: red !important
}
body {
font-family: 'Your Font', sans-serif;
font-family: "Gruppo";
src: url("path/to/gruppo-font.ttf");
}
a {
color: red;
font-family: 'Gruppo', cursive;
}