-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
64 lines (61 loc) · 1.13 KB
/
index.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
#banner-image {
padding-top: 75px;
padding-bottom: 50px;
text-align: center;
color: #f8f8f8;
background-position:center;
background-size: cover;
background-repeat: no-repeat;
-webkit-animation-name: background;
-webkit-animation-duration: 5s;
-webkit-animation-direction: alternate;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes background {
0% {
background-image: url('images/intro-img2.jpg');
}
33% {
background-image: url('images/banner.jpg');
}
100%{
background-image:url('images/bg.jpg');
opacity:0.9;
}
}
#banner_content {
position: relative;
padding-top:4%;
padding-bottom: 6%;
margin: 12% auto;
max-width:700px;
max-height:400px;
}
#banner_content h1{
font-size:53px;
font-weight:300px;
}
#banner_content p{
font-size:30px;
font-weight:200px;
}
#banner_content:hover{
color:#3498db;
}
footer {
position: fixed;
padding: 10px 0;
text-align: center;
bottom: 0;
background-color: #101010;
color: #9d9d9d;
width: 100%;
}
.panel-margin {
margin-top: 80px;
margin-bottom: 80px;
}
.text-centre {
text-align: center;
}