-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (74 loc) · 1.17 KB
/
style.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
* {
font-family: 'Poppins', sans-serif;
}
body {
background-color: antiquewhite;
}
header ul {
display: table;
width: 100%;
margin: 0;
background-color: black;
padding: 20px 0;
}
header li {
display: table-cell;
text-align: center;
}
header li a {
color: antiquewhite;
font-size: 20px;
}
body main {
padding-left: 150px;
padding-right: 150px;
}
header h1, footer, section figure {
text-align: center;
}
.title {
display: flex;
text-align: center;
justify-content: center;
margin: 0 0;
padding: 0 0;
}
.title img {
height: 80px;
padding-top: 40px;
}
header h1 {
font-size: 60px;
padding: 0 0;
}
main h2 {
font-size: 25px;
font-style: bold;
}
figure img {
height: 300px;
border-radius: 15px;
}
#second-image {
height: 300px;
border-radius: 100%;
}
footer {
background-color: black;
padding: 10px 0;
}
footer p {
color: antiquewhite;
}
.photos {
display: flex;
text-align: center;
justify-content: center;
}
@media (max-width: 768px) {
.photos {
flex-direction: column;
text-align: center;
justify-content: center;
}
}