-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathstyle.css
120 lines (100 loc) · 1.96 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kosugi&display=swap');
@import url('https://fonts.googleapis.com/css?family=Domine:400,700&display=swap');
body {
background-color: #f5f4f1;
overflow-x: hidden;
}
#stepbox {
position: relative;
display: inline-block;
width: 400px;
top: 60px;
z-index: 90;
margin-right: 50px;
}
.categoryLegend {
font-family: "Domine";
}
.step {
margin-bottom: 100px;
height: 1100px;
font-family: "Domine";
font-weight: 400;
line-height: 1.4em;
text-align: justify;
/* display: flex;
flex-direction: column;
justify-content: space-around; */
}
@media all and (min-height:0px) and (max-height:1024px) {
.step { height: 700px }
}
@media all and (min-height:1025px) {
.step { height: 1100px }
}
h1, h2 {
font-weight: 700;
text-align: right;
line-height: 32px;
}
h1 {
font-size: 35px;
}
strong {
color: rgb(245, 155, 155);
}
#graphic {
margin: auto;
width: 1500px;
flex-direction: row;
align-items: top;
justify-content: space-around;
}
#visbox {
display: inline-block;
position: fixed;
top: 0px;
z-index: 1;
margin-left: 0;
height: 1000px;
width: 1000px;
}
@media all and (min-height:0px) and (max-height:1024px) {
#visbox { top: 0px }
}
@media all and (min-height:1025px) {
#visbox { top: 200px }
}
.tick line {
stroke: 'red'
}
#tooltip {
position: absolute;
display: none;
background: rgba(0, 0, 0, .7);
border-radius: 3px;
box-shadow: -3px 3px 15px #939393;
color: white;
padding: 6px;
font-family: "Merriweather";
font-size: 1.1em;
max-width: 400px;
z-index: 100;
}
svg circle:hover{
cursor: pointer;
}
.swatch {
fill: #939393;
}
.sizeLegend2 {
opacity: 0.7
}
a {
color: rgb(221, 0, 255);
text-decoration: none;
}
img {
display: none;
}