-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlayout.css
executable file
·126 lines (123 loc) · 2.39 KB
/
layout.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
.vah-wrapper {
background: url('template/assets/images/slider/slide_1.jpg');
background-attachment: fixed;
background-size: cover;
height: 60vh;
position: relative;
display: table;
width: 100%;
box-shadow: 0 0 15px #333 inset;
}
.vah-wrapper:before {
position: absolute;
content: " ";
background: rgba(0, 0, 0, 0.6);
z-index: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.vah-main-logo {
position: fixed;
height: 60vh;
float: none;
display: table-cell;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
flex-flow: column;
box-shadow: 0 -70px 30px -30px #fff inset;
}
.vah-main-logo h2{
font-size: 7em;
display: inline-block;
font-family: 'Ubuntu', sans-serif;
color: #fff;
}
.vah-main-logo h3{
font-family: "Ubuntu Condensed", sans-serif;
color: #FFF;
font-size: 35px;
text-shadow: 0 0 2px #333;
}
.content {
background: #FFF;
position: relative;
z-index: 999;
}
/* Frame */
.frame {
position: relative;
border: 15px solid #3C3C3C;
border-radius: 15px;
min-width:300px;
width: 90%;
margin: 0 auto;
overflow: hidden;
}
.frame img {
width: 100%;
}
.frame .frame-caption {
position: absolute;
background: rgba(0, 0, 0, .7);
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: .5s;
transform: scaleY(0);
}
.frame:hover .frame-caption {
top: 0;
opacity: 1;
visibility: visible;
transform: scaleY(1);
}
.frame .frame-btn {
background: transparent;
border: none;
display: inline-block;
border-top: 1px solid #FFF;
border-bottom: 1px solid #FFF;
padding: 10px 20px;
font-family: 'Ubuntu', sans-serif;
color: #FFF;
outline: none;
text-decoration: none;
transition: .5s;
}
.frame .frame-btn:hover {
box-shadow: 0 40px 0 #FFF inset, 0 -40px 0 #FFF inset;
color: #3C3C3C;
}
/* Fonts & Labels */
.main-title {
font-family: "Ubuntu Condensed", sans-serif;
color: #0c6db8;
display: inline-block;
font-size: 40px;
border-bottom: 2px solid #CCC;
font-weight: 400;
}
.frame-title {
font-family: "Source Sans Pro", sans-serif;
font-weight: 600;
text-align: center;
margin: 10px 0;
color: #636363;
}
.footer {
background: #3C3C3C;
font-family: "Source Sans Pro", sans-serif;
padding: 20px 0;
color: #FFF;
}