-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (79 loc) · 1.7 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
html {
font-size: 62.5%;
background-color: #EBF5ED;
}
body{
font-family: Helvetica;
max-width: 100vw;
max-height: 100vh;
font-weight: bold;
color: black;
font-size: 1.5rem;
text-align: center;
letter-spacing: 0.01rem;
}
.wrapper {
max-height: 96vh;
max-width: 100vw;
display: grid;
grid-template-rows: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 8px;
justify-content: center;
}
.content {
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 3;
place-self: center center;
}
.naming{
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 3;
grid-row-end: 3;
align-self: end;
justify-self: center;
margin-bottom: -12px;
font-size: 1.3rem;
}
img{
width: 720px;
height: auto;
}
.reel {
padding-top: 32px;
font-size: 3.5rem;
}
@media (max-width: 500px) {
.wrapper {
max-height: 80vh;
max-width: 100vw;
display: grid;
grid-template-rows: 0.5fr 1fr 1.5fr;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 8px;
justify-content: center;
}
.content {
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 2;
grid-row-end: 3;
place-self: center center;
}
.naming{
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 3;
grid-row-end: 3;
align-self: end;
justify-self: center;
margin-bottom: 0px;
}
img{
width: 320px;
height: auto;
}
}