-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (99 loc) · 1.58 KB
/
styles.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
91
92
93
94
95
96
97
98
99
100
101
102
nav{
width: 100%;
height:auto;
position: fixed;
text-align: center;
}
nav ul li{
list-style-type: none;
display: inline-flex;
justify-content: space-between;
margin: 15px;
}
nav ul li a{
color:white;
font-weight:bold;
text-decoration: none;
font-size:25px;
}
video{
height:85vh;
width: auto;
background-size: contain;
}
.content{
height: 100vh;
display: flex;
justify-content: space-between;
background-color: #000000b5;
padding:80px;
}
.content h1{
color: white;
font-size:15vw;
font-weight: bold;
}
.contact_content{
background-color: #000000b5;
height: 100vh;
}
.contact_div div{
width: 50vw;
}
.contact_div div form{
display: grid;
width: 100%;
}
.contact_div{
display: flex;
}
.gallery{
height: 100vh;
background-color: #000000b5;
}
.gallery img{
width: 100%;
}
.about_content{
height: 100vh;
background-color: #000000b5;
color: white;
display: flex;
justify-content: space-between;
padding: 20%;
}
.navbar-toggle{
display: none;
}
@media (max-width:870px){
nav ul li{
display: flex;
}
#header{
position: absolute;
}
.content{
padding: 10px 0px 0px 0px;
}
.contact_form{
position: absolute;
}
.contact_div img{
width: 100vw;
}
.navbar-toggle{
display:block;
}
nav{
z-index:999;
}
.main_nav{
display:none;
background-color: black;
color:white;
text-align: center;
}
.open{
display:block
}
}