-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
57 lines (49 loc) · 1.06 KB
/
styles.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
html, body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
body {
background: url(california.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
h1 {
color: #efefef;
letter-spacing: -1px;
line-height: 0.8em;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: 300 !important;
font-size: 72px !important;
}
h2 {
color: #efefef;
letter-spacing: -1px;
line-height: 0.8em;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: 300 !important;
font-size: 50px !important;
}
.my-avatar {
margin-top: 10vh;
max-width: 180px;
margin-bottom: 30px;
border-radius: 80px;
}
.dev-links {
margin: 2% 3% 0 3%;
font-size: 64px;
}
.dev-links a:link,
.dev-links a:visited {
color: #efefef;
text-shadow: 1px 1px 1px #6a9179;
}
.dev-links a:hover,
.dev-links a:active {
color: #6a9179;
text-shadow: 1px 1px 1px #efefef;
}