-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (57 loc) · 957 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
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
body {
padding: 2em 3em;
font-family: 'Open Sans', sans-serif;
}
.header h1 {
margin: 0;
}
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
min-height: 80%;
}
.col {
min-height: 100%;
grid-column: 1fr 1;
}
.col .bear {
margin: 3em 1em;
}
.bear-description {
margin-bottom: 0.25em;
}
.bear {
transition: 0.25s all;
border: solid #333 2px;
padding: 1em;
border-radius: 0.5em;
}
.bear:hover {
transform: scale(1.05) rotate(1deg);
box-shadow: #999 0.5em 0.5em 0.75em;
}
.bear-link {
width: 100%;
box-sizing: border-box;
}
.bear img {
max-width: 100%;
}
.duplicate {
display: none;
}
.duplicate .bear {
margin: 1em 0;
}
footer {
text-align: center;
}
@media (max-width: 600px) {
.container {
display: none;
}
.duplicate {
display: initial;
}
}