forked from anotherjesse/chromr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
59 lines (49 loc) · 808 Bytes
/
style.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
* {
margin: 0;
padding: 0;
}
html, body, #bg {
height:100%;
width:100%;
overflow:hidden;
background: #000;
}
#bg div {
width:200%;
height:200%;
left:-50%;
position:absolute;
text-align:center;
vertical-align:middle;
}
#bg img#photo {
margin:0 auto;
min-height:50%;
min-width:50%;
}
#info {
background: rgba(0,0,0,0.5);
font: 16px "Helvetica Neue", "Helvetica", Arial, sans-serif;
font-weight: bold;
color: rgba(255,255,255,0.5);
width: 100%;
bottom: 50px;
padding: 1em;
position: fixed;
text-decoration: none;
}
#info:hover {
color:rgba(255,255,255,1);
}
#owner {
opacity: 0.5;
}
#owner:hover {
opacity: 1;
}
#buddyicon {
bottom: 50px;
right: 0;
padding-right: 1em;
position: absolute;
}