aboutsummaryrefslogtreecommitdiff
path: root/crumbs/static/css/cr_title.css
blob: 1e3cfff86f143a9f7a323a4e5a5681eda55a6150 (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
/* Use different paddings for titles */
.title h1 {
    padding-top: 20px;
    padding-bottom: 50px;
    font-size: 36px;
    font-weight: 500;
}

/* Use a white navigation divider */
.navigation {
    border-bottom: 1px solid white;
}

/* Use a larger text on the front page */
p {
    font-size: 22px;
    font-weight: 300;
    padding-bottom: 0px;
    padding-left: 5px;
    padding-right: 0px;
    text-indent: 0px;
}

/* Colour blocks are bigger on the front page */
.colour {
    height: calc((100vw - 2rem) / 15);
}

/* Override link behaviour differently */
a, a:visited a:hover, a:active, a:link {
    color: #BEBEBE;
    text-decoration: none;
}

/**
 *
 * Classes and IDs for the social media links & animation
 *
 **/

#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;
}
#legal:hover {
    color: #e7d853;
    animation: .45s jump infinite linear;
}

.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);
  }
}