-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (84 loc) · 1.57 KB
/
styles.css
File metadata and controls
97 lines (84 loc) · 1.57 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
h1 {
font-size: 4rem;
text-align: center;
}
@media (min-width: 30rem) {
.navlist {
list-style-type: none;
display: grid;
margin: 0;
padding: 2rem;
font-size: 2rem;
grid-template-columns: 1fr 1fr 1fr;
justify-items: center;
}
}
.navlist a:link,
.navlist a:visited {
color: black;
text-decoration: none;
}
main {
padding-left: 15%;
padding-right: 15%;
}
.side-by-side {
display: grid;
/* grid-template-columns: 1fr auto; */
align-items: start;
justify-items: center;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem 3rem;
}
.top-and-bottom {
display: grid;
justify-items: center;
}
.long-text > p {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.5rem;
}
.bold {
font-weight: bold;
font-size: 1.7rem;
}
div.side-by-side img {
object-fit: cover;
width: 80%;
}
figure.item {
vertical-align: top;
display: inline-block;
text-align: center;
background: lightgray;
padding: 2rem;
margin: 0 15% 0 15%;
}
figure img {
object-fit: cover;
width: 100%;
}
.caption {
display: block;
font-size: 1.5rem;
}
.contact {
list-style-type: none;
display: grid;
grid-template-rows: 1fr auto auto;
justify-content: center;
justify-items: center;
row-gap: 1rem;
background-color: rgb(150, 156, 161);
color: rgb(39, 39, 39);
padding: 3rem;
margin: 0 15% 0 15%;
border-radius: 10px;
}
.contact h2 {
font-weight: normal;
font-size: 2rem;
font-size: 2vw;
object-fit: cover;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}