-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (72 loc) · 1004 Bytes
/
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
body {
font-family: "Cormorant", serif;
}
h1 {
display: inline-block;
font-weight: 300;
margin: 0 32px 0 0;
}
.links {
display: inline-block;
}
.links li {
display: inline-block;
}
.links a {
color: black;
text-decoration: none;
font-size: 20px;
margin: 0 8px;
}
.navbar {
margin: 32px;
}
.links ul {
padding: 0;
}
a.active {
border-bottom: 1px solid black;
}
.gallery {
padding: 16px;
}
.card {
width: 49.75%;
display: inline-block;
box-sizing: border-box;
padding: 16px;
}
.card img {
width: 100%;
height: 500px;
object-fit: cover;
}
.card img:hover {
opacity: 0.9;
}
.card h2 {
margin: 8px 0 16px;
font-weight: 300;
}
.about {
width: 40%;
min-width: 600px;
margin: 100px 0 100px 200px;
}
.about h3 {
font-size: 40px;
font-weight: 300;
}
.cta {
border-bottom: 1px solid black;
display: inline-block;
padding-bottom: 8px;
margin-top: 0;
}
.contact {
margin-top: 100px;
}
.contact p {
margin: 0;
font-size: 20px;
}