-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
82 lines (68 loc) · 1.27 KB
/
main.css
File metadata and controls
82 lines (68 loc) · 1.27 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
@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(https://fonts.googleapis.com/css?family=Satisfy);
html, body {
font-family: 'Roboto', sans-serif;
width: 100%;
height: 100%;
}
header {
height: 100%;
background: url('img/header_image.jpg') no-repeat center center fixed;
color: #fff;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
text-align: center;
position: relative;
}
header h3 {
color: #ff0000;
line-height: 100px;
margin-top: 0;
padding-top: 100px;
font-size: 12px;
}
.header-fade {
opacity: 1;
margin: 0%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-name: dropHeader;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 0.5s;
}
@keyframes dropHeader {
0% {
opacity: 0;
}
20% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.greeting {
font-size: 16px;
text-align: center;
}
.my-name {
font-family: 'Satisfy', cursive;
font-size: 80px;
text-align: center;
}
section {
}
.sct-expand {
height: 100%;
}
footer {
background-color: #efefef;
border-top: 1px solid #dbdbdb;
padding-top: 16px;
padding-bottom: 100px;
}