forked from TobMcG/tobmcg.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (78 loc) · 1.25 KB
/
style.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
78
79
80
81
82
83
84
/*http://colorbrewer2.org/?type=qualitative&scheme=Set3&n=9*/
body {
margin: 0;
background: black;
}
body svg.globe {
z-index: 5;
position: absolute;
bottom: 0;
left: 0;
}
#timer {
z-index: 10;
color: white;
cursor: default;
font-family: 'Source Code Pro', monospace;
font-size: 18px;
font-weight: 300;
position: absolute;
top: 0.5em;
left: 0.5em;
margin-right: 80px;
word-break: break-all;
}
#timestamp:hover {
cursor: wait;
color: red;
}
#contact {
color: black;
font-weight: bold;
}
#portfolioContainer {
position: absolute;
left: 5%;
top: 15%;
}
#portfolioContainer div {
--width: 150px;
position: absolute;
background-color: white;
width: var(--width);
height: var(--width);
}
#title {
z-index: 1;
color: white;
cursor: default;
font-family: 'Source Code Pro', monospace;
font-size: 36px;
font-weight: 400;
text-align: right;
line-height: 100%;
position: absolute;
top: 1%;
right: 1%;
max-height: 99%;
overflow: hidden;
}
#title span {
opacity: 0;
}
path.glow {
fill: none;
stroke: white;
stroke-width: 5px;
}
path.ocean {
fill: rgba(255,255,255,1);
}
path.land {
fill: rgba(0,0,0,1);
}
path.countries {
fill: none;
stroke: rgba(255,255,255,1);
stroke-width: 0.3px;
}