-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
107 lines (89 loc) · 1.7 KB
/
stylesheet.css
File metadata and controls
107 lines (89 loc) · 1.7 KB
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
body {
margin: 0px;
font-family: Arial;
background-color: rgb(48,48,48);
}
.navbar {
display: flex;
margin: 0;
height: 8vh;
list-style: none;
align-items: center;
background-color: rgb(31, 31, 31);
}
a {
color: white;
text-decoration: none;
}
.navbar li {
padding: 20px;
font-size: 1.3em;
}
.navcontact {
margin-left: auto;
margin-right: 20px;
}
.cover {
height: 80vh;
background-image: url(./img/bg.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%; /* what does this mean? */
display: flex;
justify-content: center;
align-items: center;
}
.cover h1 {
text-transform: uppercase;
color: white;
margin: 0;
font-size: 3rem;
}
.albums {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* what does this mean? */
gap: 20px;
margin: 0px;
padding: 20px 20px 0px 20px;
}
.albums img {
width: 100%; /* what does this mean? */
vertical-align: top; /* what does this mean? */
}
.albums li {
padding: 0px;
margin: 0px;
}
/**************** RECREATE FOOTER ****************/
footer {
height: 100%;
padding: 0px;
margin: 0px;
margin-top: 10px;
background-color: rgb(31,31,31);
}
.contact {
display: flex;
list-style: none;
align-items: center;
justify-content: center;
margin: 0px;
padding: 5px;
padding-top: 8px;
}
.contact img {
height: 3vh;
}
h4 {
margin: 0px;
margin-bottom: 0.5vh;
font-weight: 500;
padding-right: 20px;
color: white;
}
#push {
margin-left: auto;
padding-right: 0px;
padding-bottom: 5px;
}