-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
78 lines (65 loc) · 1.06 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Colors
$text: white;
$link: #e34234;
$link-hover: #ba160c;
canvas {
display: block;
vertical-align: bottom;
}
.text {
position: absolute;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
color: $text;
max-width: 90%;
padding: 2em 3em;
background: rgba(0, 0, 0, 0.75);
text-shadow: 0px 0px 2px #131415;
font-family: "Work Sans";
text-align: center;
}
h1 {
color: #FFFFFF;
font-size: 2.25em;
font-weight: 700;
letter-spacing: -1px;
}
h1:selection { background-color: #7628A1; }
h2:hover {
background-color: #7628A1;
}
a,
a:visited {
color: $link;
transition: 0.25s;
}
a:hover,
a:focus {
color: $link-hover;
}
.github {
bottom: 10px;
right: 10px;
position: fixed;
border-radius: 10px;
background: #fff;
padding: 6px 6px 6px 6px;
border: 1px solid #000;
}
.github a:hover,
.github a:link,
.github a:visited,
.github a:active {
color: #fff;
text-decoration: none;
}
.github img {
height: 30px;
}
.github #gh-project {
font-size: 20px;
padding-left: 5px;
font-weight: bold;
vertical-align: bottom;
}