-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitface.css
More file actions
78 lines (69 loc) · 1.24 KB
/
gitface.css
File metadata and controls
78 lines (69 loc) · 1.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
* {
padding:0; margin:0;
}
body {
background:#eee;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
}
#gitfaces {
margin-top:75px;
}
.gitface {
float:left;
display:block;
position:relative;
text-decoration:none;
border:0;
width:300px;
height:300px;
}
.gitface span.contributions {
position:absolute;
bottom:0px;
right:5px;
color:white;
font-size:50px;
font-weight:bold;
text-shadow:0px 0px 3px rgba(0,0,0,0.3);
}
.gitface span.login {
position:absolute;
bottom:5px;
left:5px;
color:white;
font-size:25px;
font-weight:bold;
text-shadow:0px 0px 3px rgba(0,0,0,0.3);
font-family:monospace;
}
#addressbar {
position:fixed;
top:0px;
left:0px;
width:100%;
background:white;
background:rgba(255,255,255,0.8);
-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);
-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.2);
box-shadow:0px 0px 5px rgba(0,0,0,0.2);
}
#addressbar .padding {
padding:1px;
}
#addressbar input {
display:block;
width:100%;
padding:15px;
border:none;
background:none;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight:bold;
font-size:24px;
color:#bbb;
}
#addressbar input:focus {
outline:none;
}
#addressbar input.typing {
color:#333;
}