-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresultsStyling.css
71 lines (64 loc) · 1.55 KB
/
resultsStyling.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
body {
margin: 0px;
}
header {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 6px 12px 6px 0px;
height: 400px;
background-color: hsl(87, 53%, 65%);
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;
}
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;
}
footer {
background-color: black;
height: fit-content;
padding: 12px;
color: whitesmoke;
text-align: center;
}