forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (40 loc) · 629 Bytes
/
style.css
File metadata and controls
56 lines (40 loc) · 629 Bytes
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
/* Header */
body {
font-family: "Merriweather", serif;
}
.desktop-visible {
display: none;
}
.movile-visible {
display: none;
}
@media (min-width: 992px) {
.desktop-visible {
display: block;
margin: 0 auto;
}
header p {
font-size: 25px;
}
}
@media all and (max-width: 991px) {
.movile-visible {
display: block;
}
}
.image-logo {
width: 100%;
}
.medium-image img, .image-logo {
width: 100%;
max-height: 300px;
object-fit: cover;
}
.header-pink {
background-color: #f4f0d2;
}
.menu {
display: flex;
flex-direction: column;
justify-content: space-between;
}