-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (49 loc) · 877 Bytes
/
styles.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
html, body {
margin: 0;
}
.layout {
display: grid;
}
.container {
display: grid;
grid-template-columns: repeat(2, minmax(200px, 1fr));
gap: 10px 15px;
width: 80%;
margin: auto;
}
.content {
background-color: aqua;
text-align: center;
padding: 60px 0 60px 0;
}
#spotlight {
grid-column: 1/-1;
}
.navbar {
display: flex;
justify-content: center;
}
.navbar-item {
display: inline;
font-size: 1.5em;
color: white;
margin: 0 10px 0 10px;
}
header {
height: 70vh;
margin-bottom: 30px;
background-image: url(images/joao-silas-UGQoo2nznz8-unsplash.jpg);
background-position: center;
background-size: cover;
}
footer {
height: 200px;
margin-top: 20px;
background-color: darkgray;
}
#title {
text-align: center;
color:white;
font-size: 86px;
margin-top: 250px;
}