aboutsummaryrefslogtreecommitdiff
path: root/static/css/home.css
blob: 95052ad3b6887e9b40754fc5c2ef0956bc809802 (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
  font-family: Quicksand;
  font-style: normal;
  font-variant: normal;
  font-size: 26px;
  font-weight: 300;
  color: #BEBEBE;
  background-color: #222222;
  background-image: none;
  line-height: 32px;
  -webkit-font-smoothing:antialiased;
  text-rendering: optimizeLegibility;
}

div.gradient {
  background-color: #222222;
}

div.icons {
  padding-top: 32px;
  font-family: Inconsolata;
  /*font-variant: slim;*/
  font-size: 16px;
  line-height: 16px;
  font-style: normal;
  font-variant: normal;
}

/* This is used for the ASCII art stuff */
.icons p { 
  white-space: pre;
}

.icons h1 {
  padding-bottom: 15px;
  padding-top: 0px;
}

.nav a {
  font-size: 16px;
  color: #FFBB44;
}

h1 {
  font-weight: bold;
  font-size: 64px;
  padding-top: 50px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 80px;
}

#twitter:hover {
  color: #00aced;
  animation: .45s jump infinite linear;
}
#github:hover {
  color: #bd2c00;
  animation: .45s jump infinite linear;
}
#keys:hover {
  color: #8d55e0;
  animation: .45s jump infinite linear;
}

#email:hover {
  color: #FFBB44;
}

a, a:visited, a:hover, a:active, a:link{
  color: #BEBEBE;
  text-decoration: none;
}

p {
  padding-top: 5px;
  padding-right: 30px;
  padding-left: 80px;
}


@keyframes jump {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-.05em);
  }
  80% {
    transform: translateY(.05em);
  }
  100% {
    transform: translateY(0);
  }
}