-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (54 loc) · 966 Bytes
/
styles.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
body {
margin: 3em;
background-color:rgb(255, 252, 248);
color:rgb(52, 29, 0);
}
.interlinked-main-grid {
margin: 1em;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 2rem;
}
.hullo {
fill:rgb(52, 29, 0);
}
.para-start {
font-weight: bold;
font-size: 1.5em;
}
.interlinked-label {
padding: 1em;
display: none;
position: absolute;
top: 2em;
left: 1em;
font-weight: bold;
font-style: italic;
background-color: rgba(255, 255, 255, 0.845);
}
.interlinked-child-grid {
display: grid;
}
.link {
border: 1px solid rgb(255, 252, 248);
display: block;
position: relative;
}
.link:hover {
border: 1px solid rgb(52, 29, 0);
border-radius: 1em;
}
.link:hover .interlinked-label {
display: block;
}
svg {
stroke: rgb(52, 29, 0);
fill: transparent;
background-color: transparent;
stroke-width: 3px;
}
.svgControls {
position: fixed;
bottom: 0;
margin: 1em;
}