-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (82 loc) · 1.51 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
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
89
90
91
92
93
/* Tutorial made by Rene-F for AppSeed.us | 2022 | https://github.com/Rene-F */
/* reset styling */
html,
body
{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
color: #000;
}
/* navbar styling */
.navbar,
.navbar-brand
{
font-size: 1.1em;
font-weight: 600;
}
/* background styling */
#main
{
background:url(./img/Hippopx.jpg) no-repeat center center fixed;
display: table;
height: 100%;
position: relative;
width: 100%;
background-size: cover;
color: #fff;
}
/* main content styling */
.getstarted
{
display: table-cell;
text-align: center;
vertical-align: middle;
}
/* main content text styling */
.getstarted h1, h3
{
font-size: 2.5em;
font-weight: 700;
}
/* padding between containers */
.padding
{
padding: 80px 0;
}
/* keep the image inside the containers */
.padding img
{
width: 100%;
}
/* fixed scrolling image effect */
#fixed
{
background:url(./img/PhotoofsolarPVandwindturbinesfieldwithsunnybackgroundShutterstock751358878.avif) no-repeat center center fixed;
display: table;
height: 60%;
position: relative;
width: 100%;
background-size: cover;
}
/* footer styling */
footer
{
padding: 5% 5%;
color: #fff;
background-color: #000;
font-size: 0.8em;
}
/* footer icons styling */
.fa
{
padding: 15px;
color: #fff;
text-decoration: none;
font-size: 20px;
}
.icon
{
max-width: 150px;
}