-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (62 loc) · 1.4 KB
/
styles.css
File metadata and controls
72 lines (62 loc) · 1.4 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
html,
body {
width: 100%;
height: 100%;
}
body {
font-size:100%;
background-image: url('bg.png');
margin: 0;
min-width: 530px;
}
.page-header {
padding-top: 5%;
}
.page-header .title,
.page-header .tagline {
font-family: 'Oxygen', sans-serif;
font-weight: 300;
text-transform: uppercase;
text-align: center;
}
.page-header .title {
font-size: 6em;
background-color: #53bf6b;
margin: 0;
color: #ffffff;
text-shadow: 0 2px 2px rgba(100, 100, 100, 0.5),
0 -1px 1px rgba(100, 100, 100, 0.5);
box-shadow: 0 -3px 3px rgba(100, 100, 100, 0.1);
}
strong {
font-weight: 700;
}
.page-header .tagline {
font-size: 1.5em;
margin: 0;
padding: 10px 0;
box-shadow: 0 3px 3px rgba(100, 100, 100, 0.1),
0 -3px 3px rgba(100, 100, 100, 0.1);
background-color: #ffffff;
color: #888888;
}
.page-header .github-icon a:link,
.page-header .github-icon a:visited {
color: rgba(50, 50, 50, 0.1);
}
.page-header .github-icon a {
text-decoration: none;
font-size: 5em;
text-shadow: 0 2px 2px rgba(255, 255, 255, 0.5),
0 -1px 1px rgba(210, 210, 210, 0.5);
transition: color 1000ms ease;
}
.page-header .github-icon a:hover,
.page-header .github-icon a:active {
transition: color 1000ms ease;
color: rgba(83, 191, 107, 1);
}
.page-header .github-icon {
text-align: center;
margin-top: 10px;
}