forked from mystikala/SJH-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (59 loc) · 1.01 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
body {
margin: 0;
}
.header {
background-color: #B0BEC5;
color: #FFF;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 25px;
margin: 0px;
}
.nav {
list-style: none;
display: flex;
text-align: right;
}
.nav a {
color:#FFF;
text-decoration: none;
margin: 0 10px;
display: block;
transition: all .3s ease-out;
}
.nav a:hover {
color: #455A64;
transform: scale(1.2);
}
.mid {
background-color: #CFD8DC;
display: grid;
margin: 0px;
align-items: center;
color:#FFF;
text-align: center;
}
.mid-inner {
display: grid;
max-width: 1200px;
margin: 0 auto;
padding: 100px 0px;
}
.photos img {
width: 100%;
}
.photos {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-column-gap: 10px;
grid-row-gap: 45px;
}
.footer {
background-color: #90A4AE;
display: grid;
margin: 0px;
padding: 25px;
color:#FFF;
text-align: center;
}