-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
97 lines (88 loc) · 1.85 KB
/
Copy pathstyle1.css
File metadata and controls
97 lines (88 loc) · 1.85 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
@media only screen and (max-width: 600px) {
.main{
display: grid;
grid-template: "nav"
"ba"
"v1"
"v2"
"ga";
}
.video{
margin: 10%;
height: 250px;
}
.gallery{
flex-direction: column;
text-align: center;
}
}
@media only screen and (min-width: 600px) {
.main{
display: grid;
grid-template: "nav nav"
"ba ba"
"v1 v2"
"ga ga";
}
.video{
margin: 10%;
height: 250px;
}
}
@media only screen and (min-width: 1100px) {
.main{
display: grid;
grid-template: "nav nav"
"ba v1"
"ba v2"
"ga ga" auto/70% 30%;
}
.video{
margin: 0%;
height: auto;
}
}
.banner{
grid-area: ba;
background: url('./resources/simba.jpeg');
background-size: cover;
background-repeat: no-repeat;
background-position: right bottom;
height: 500px;
}
.banner > div{
font-family: 'Merriweather', serif;
margin: 50px;
font-size: 40px;
font-size: 30px;
color: white;
}
.video div:nth-child(1){
grid-area: v1;
}
.video div:nth-child(1){
grid-area: v2;
}
.gallery-wrapper{
grid-area: ga;
margin:10px 10%;
}
.gallery{
display: flex;
}
.gallery .text{
align-self: center;
margin-left: 10px;
}
.gallery .heading{
font-size: 30px;
}
.gallery .button{
text-decoration: none;
color: white;
background-color:#92CE1A;
height: 15px;
padding: 10px;
line-height: 50px;
border-radius: 5px;
}