-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (88 loc) · 1.72 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (88 loc) · 1.72 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
98
99
100
101
102
*{
box-sizing: border-box;
}
body {
margin: 0;
font-family:sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #333;
overflow-x: hidden;
}
.v-header{
height:100vh;
display: flex;
align-items: center;
color: white;
}
.container{
max-width: 960px;
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;
}
.full-screen-video-wrap{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;
}
.full-screen-video-wrap video{
min-height: 100%;
min-width: 100%;
}
.header-overlay{
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
background-image: url(video/background.jpg);
z-index: 1;
opacity: 0.45;
}
.header-content{
z-index: 2;
}
.header-content h1{
font-size:50px;
margin-bottom: 0;
}
.header-content p{
font-size: 1.5rem;
display: block;
padding: 2rem;
}
.button{
background-color: rgba(189, 184, 184, 0.28);
color: black;
border: 1px solid #ffffff;
color: white;
border-radius: 5px;
font-size: 1.2rem;
padding: 1rem 2rem;
text-decoration: none;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button:hover {
background-color: rgba(84, 83, 82, 0.66); /* Green */
/*box-shadow:5px 2px 10px 1px rgba(14, 13, 13, 0.61);*/
color: white;
}
@media (max-width:960px){
.container{
padding-right: 3rem;
padding-left: 3rem;
}
}
.section{
padding: : 20 0;
}
.section-b {
background:#333;
color:#fff;
}