-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstepStyling.css
134 lines (119 loc) · 2.68 KB
/
stepStyling.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
body {
margin: 0px;
}
header {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 6px 12px 6px 0px;
height: 400px;
background-color: darkcyan;
background-image: url(https://www.oceaneering.com/wp-content/uploads/2019/04/sustainability-header-bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
object-fit: cover;
width: 100%;
}
.logo {
position: absolute;
object-fit: cover;
left: 5px;
padding: 10px;
height: 100px;
z-index: 2; /* Ensure the logo is above other content */
}
#title-slogan {
height: 300px;
width: 450px;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
font-weight: bold;
text-align: center;
font-family: 'Titillium Web', sans-serif;
color: whitesmoke;
text-shadow: 0px 0px 6px black;
font-size: 42px;
}
#byline {
width: 100%;
height: 50px;
padding: 3px;
display: flex;
flex-direction: row;
justify-content: space-between;
background-color: #245501;
font-size: 18px;
color: whitesmoke;
text-shadow: 0px 0px 2px black;
margin-left: 5px;
border-radius: 8px;
}
#learn-more-button {
border-radius: 8px;
height: 36px;
margin-top: auto;
margin-bottom: auto;
}
#learn-more-button:hover {
background-color: yellowgreen;
cursor: pointer;
}
#about-us {
padding: 6px 12px;
text-align: left;
background-color: #AAD576;
height: fit-content;
margin-top: 0px;
}
#image-container {
display: flex;
flex-direction: row;
justify-content: space-around;
}
#image-container div {
background-color: whitesmoke;
height: 400px;
width: 20%;
}
main {
font-family: 'Mulish', sans-serif;
}
#main-body {
text-align: center;
background-color: #73A942;
height: fit-content;
padding: 12px;
}
.grid-container {
margin-left: auto;
margin-right: auto;
width: 80%;
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 columns with equal width */
grid-template-rows: repeat(2, 300px); /* 2 rows with a fixed height of 200px */
gap: 20px; /* Adjust the gap between grid items as needed */
font-weight: bold;
}
.grid-item {
background-color: rgb(255, 255, 255); /* Style the grid items as needed */
padding: 20px;
text-align: center;
border-radius: 24px;
}
#secondary-section {
background-color: #1A4301;
color: whitesmoke;
height: fit-content;
padding: 12px;
text-align: center;
align-items: center;
}
footer {
background-color: black;
height: fit-content;
padding: 12px;
color: whitesmoke;
text-align: center;
}