-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
130 lines (123 loc) · 2.71 KB
/
style2.css
File metadata and controls
130 lines (123 loc) · 2.71 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.inpo-box{
padding-top: 100px;
height:100%;
margin-bottom:10px;
background-color: #C9AE5D;
color: #003366;
text-shadow: 2px 2px 4px #003366;
text-align: center;
box-shadow: 10px 10px 20px #003366;
width:100%;
}
.jumbotron{
width:100%;
height:500px;
margin: 0px;
background-color:transparent;
}
/* ============================================================
PRIMARY STRUCTURE
============================================================ */
.container {
max-width: 960px;
margin: 0 auto;
}
/* ============================================================
SECTIONS
============================================================ */
section.module:last-child {
margin-bottom: 0;
}
section.module h2 {
margin-bottom: 40px;
font-family: "Roboto Slab", serif;
font-size: 30px;
}
section.module p {
margin-bottom: 40px;
font-size: 16px;
font-weight: 300;
}
section.module p:last-child {
margin-bottom: 0;
}
section.module.content {
padding: 40px 0;
}
section.module.parallax {
padding: 240px 0;
background-position: 0 0;
}
section.module.parallax h1 {
color: #1e1e1e;
font-size: 48px;
line-height: 1;
font-weight: 700;
text-align: center;
text-transform: uppercase;
text-shadow: 0 0 10px white;
}
section.module.parallax-1 {
background-repeat:no-repeat;
background-image: url('http://img07.deviantart.net/368c/i/2011/197/1/a/ravenclaw_flag_by_kooro_sama-d3x5pj3.png');
background-size:100%;
}
section.module.parallax-2 {
background-image: url("../img/demo/pattern2.png");
}
section.module.parallax-3 {
background-image: url("../img/demo/pattern3.png");
}
@media all and (min-width: 600px) {
section.module h2 {
font-size: 42px;
}
section.module p {
font-size: 20px;
}
section.module.parallax {
padding: 300px 0;
}
section.module.parallax h1 {
font-size: 96px;
}
}
@media all and (min-width: 960px) {
section.module.parallax h1 {
font-size: 160px;
}
}
.animate-in {
-webkit-animation: fadeIn .5s ease-in;
animation: fadeIn .5s ease-in;}
.animate-out {
-webkit-transition: opacity .1s;
transition: opacity .1s;
opacity: 0;
}
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
#pageloader{
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; /* center children content horizontally */
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center; /* center children content vertically */
z-index: 10000;
background: white;
}