-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (96 loc) · 1.69 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
overflow-x:hidden;
}
.pagecontainer {
position:absolute;
top: 0;
left: 0;
width:100%;
height:100%;
background:url("img/redbg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color:rgba(255,255,255,.85);
}
.pagecontainer .verticalalign {
height:50%;
}
.pagecontainer .header {
position:relative;
top:50%;
height:300px;
margin-top:100px;
margin-left:auto;
margin-right:auto;
text-align:center;
display:none;
}
.pagecontainer h1 {
font-family: Montserrat;
font-size:72px;
line-height:15px;
letter-spacing: 5px;
opacity:0;
position:relative;
right:-10px;
}
.pagecontainer h3{
font-family:Montserrat;
font-size:1.3em;
letter-spacing:3px;
font-weight:lighter;
position:relative;
right:-10px;
}
.pagecontainer h5 {
font-family: Open Sans;
font-weight:lighter;
font-size:1em;
margin-top:-5px;
letter-spacing: 2px;
opacity:0;
position:relative;
left:-5px;
}
.pagecontainer #whiteline {
width: 53%;
height:3px;
background-color: #fff;
margin-left:-28%;
position:relative;
opacity:0;
left:10px;
}
.pagecontainer .nav {
position:absolute;
top:10px;
right:10px;
font-family: Montserrat;
font-size:.8em;
letter-spacing: 2px;
display:none;
overflow:none;
height:50px;
}
.pagecontainer .nav ul {
list-style-type: none;
display: inline-block;
border-left:3px solid #fff;
}
.pagecontainer .nav li {
position:relative;
display:inline-block;
width:120px;
text-align:center;
padding:7px;
}
.pagecontainer .nav a {
text-decoration: none;
color:#fff;
}
.pagecontainer .nav li:hover {
background-color:rgba(255,255,255,.3);
color:rgba(255,255,255,.7);
}