-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
54 lines (45 loc) · 798 Bytes
/
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
html, body {
font-family: helvetica, sans-serif;
background: url(home.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color:white;
}
.content {
width:960px;
height:100%;
margin:0 auto;
}
.title {
text-align:right;
background-color:rgba(0,0,0,0.3);
position:fixed;
right:0;
bottom:0;
padding-right:1px;
}
.title > h1 {
margin-bottom:0;
}
.title > span {
font-weight: bold;
}
.assignments {
background-color:rgba(0,0,0,0.3);
position:fixed;
left:0;
top:0;
font-size:1.5em;
font-weight:bold;
}
.assignments span {
display:block;
}
a {
text-decoration:none;
}
a:hover {
opacity:0.5;
}