-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
54 lines (45 loc) · 986 Bytes
/
main.css
File metadata and controls
54 lines (45 loc) · 986 Bytes
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
*{
margin: 0;
font-family: 'Josefin Sans', sans-serif;
}
body {
background-image: url(images/linen_brown.png);
height: 100%;
}
.logo {
display: block;
margin: 100px auto 50px auto;
}
.contact {
display: block;
margin: 50px auto;
text-align: center;
}
h2 {
text-align: center;
opacity: 0.4;
font-size: 40pt;
color: #ffffff;
}
p {
opacity: 0.6;
text-align: left;
font-size: 20pt;
color: #ffffff;
}
hr {
margin: 45px 0px;
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
background-image: -moz-linear-gradient(left, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
background-image: -ms-linear-gradient(left, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
background-image: -o-linear-gradient(left, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
}
img {
margin: 0 0 0 30px;
vertical-align: middle;
}
#timeline {
margin-bottom: 30px;
}