-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
59 lines (51 loc) · 1.06 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
body {
font-family:calibri;
font-size:9px;
background-color:#BEBEBE;
overflow-x:hidden;
}
a {
text-decoration:none;
color:#111;
}
#container{
margin:100px auto;
margin-top:-50px;
}
#header {
width:100%;
height:100px;
padding-top:60px;
padding-bottom:15px;
margin-bottom:60px;
}
#headtitle {
font-family:oswald;
color:#111;
font-size:78px;
font-weight:700;
}
#headlinks {
margin-top:5px;
}
#headlinks a {
width:220px;
background:#00067B;
color:#fff;
font-size:15px;
display:inline-block;
padding:3px;
letter-spacing:1px;
text-transform:uppercase;
margin-left:2px;
margin-right:2px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
#headlinks a:hover {
background:#000456;
color:#fff;
}