aboutsummaryrefslogtreecommitdiff
path: root/crumbs/static/css/cr_title.css
blob: cced3b45794fe9c5a2538cd12ea5b60cff875067 (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
96
97
98
99
100
101
102
/* 

This file contains all definitions are are EXCLUSIVE for the title

*/

div.navigation {
    padding-top: 12px;
    padding-bottom: 75px;
    padding-right: 32px;
    height: 75px;
    line-height: 75px;
  }
  

.title {
    padding-top: 20px;
    padding-bottom: 50px;
    font-size: 58px;
}

/* For the title page we want other paragraph styles */
p {
    font-size: 22px;
    font-weight: 300;
    padding-bottom: 0px;
    padding-left: 5px;
    padding-right: 0px;
    text-indent: 0px;
  }


/* This is the block container */
.gay {
    width: 0 auto;
    height: 50px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 150px;
}

/* This is a block */
.colour {
    display: flex;
    flex-direction: column;
    height: 75px;
    width: 75px;
}

.span {
    display: inline-block;
}

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

#twitter:hover {
    color: #6997c8;
    animation: .45s jump infinite linear;
}
#github:hover {
    color: #ef787b;
    animation: .45s jump infinite linear;
}
#keys:hover {
    color: #ca98c9;
    animation: .45s jump infinite linear;
}

#email:hover {
    color: #99cb9b;
}

div.icons {
    padding-top: 25px;
    padding-bottom: 25px;
}

.icons h1 {
    font-family: Inconsolata;
    font-size: 42px;
    line-height: 42px;
    font-style: normal;
    font-variant: normal;
}

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