-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.css
executable file
·110 lines (99 loc) · 1.87 KB
/
home.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
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
* {margin: 0; padding: 0}
@font-face
{
font-family: Aleo;
src: url(Fonts/Aleo-Regular.otf);
}
@font-face
{
font-family: Aleo bold;
src: url(Fonts/Aleo-Bold.otf);
}
@font-face
{
font-family: Aleo italic;
src: url(Fonts/Aleo-Italic.otf);
}
@font-face
{
font-family: Aleo bolditalic;
src: url(Fonts/Aleo-BoldItalic.otf);
}
@font-face
{
font-family: Aleo light;
src: url(Fonts/Aleo-Light.otf);
}
@font-face
{
font-family: Aleo lightitalic;
src: url(Fonts/Aleo-LightItalic.otf);
}
body {
background-image: url("img/headingline.png");
background-repeat: repeat-x;
}
#header {
margin-top: 6px;
}
#about_nav {
float: right;
margin-right: 60px;
font-family: Aleo light;
font-size: 20pt;
color: #000000;
text-decoration: none;
}
#gallery_nav {
float: right;
margin-right: 40px;
font-family: Aleo light;
font-size: 20pt;
color: #000000;
text-decoration: none;
}
#bahead {
width: 120px;
height: 150px;
padding-top: 200px;
margin-left: auto;
margin-right: auto;
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
#bahead:hover {
opacity: 0;
}
#baoutline {
position: relative;
width: 121px;
height: 213px;
top: -150px;
margin-left: auto;
margin-right: auto;
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
#baoutline:hover {
opacity: 0;
}
#baoutlinefull {
position: relative;
width: 121px;
height: 213px;
top: -363px;
left: 0px;
margin-left: auto;
margin-right: auto;
opacity: 0;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
#baoutlinefull:hover {
opacity: 1;
}