-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (89 loc) · 1.6 KB
/
style.css
File metadata and controls
104 lines (89 loc) · 1.6 KB
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
html {
margin: 0;
padding: 0;
}
body {
background-color: white;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
input {
font-size: 1.1em;
width: 200px;
}
#array-input-label {
font-size: 1.1rem;
margin: 0.5rem 0 0.5rem 0;
}
#title {
font-size: 1.75em;
padding: 0 0 .5rem 0;
}
#blurb {
background-color: rgba(255, 255, 255, 0.386);
text-align: center;
margin: 1em auto 1em auto;
width: 500px;
padding: .5em;
border-radius: 5px;
}
#visual-title {
font-weight: bold;
font-size: 1.2em;
padding-bottom: .5em;
}
#array-visual {
margin: 1em;
}
header {
background-color: #0534d4;
width: 100%;
margin: 0;
padding: 1em;
color: white;
display: flex;
flex-direction: column;
align-items: center;
}
#tree-options {
display: flex;
list-style: none;
justify-content: center;
}
.active-option {
background-color: lightblue !important;
color: black !important;
}
#tree-options > li {
margin: 1rem 0.5rem 0 0.5rem;
background-color: rgb(69, 69, 69);
font-size: 1.1rem;
color: white;
padding: .25rem .5rem .25rem .5rem;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 5px;
font-weight: normal;
}
rect:hover, circle:hover, text.circle:hover, text.rect:hover, #tree-options > li:hover {
cursor: pointer;
}
.subtext {
font-size: .8em;
font-weight: 400;
}
.svg-container {
display: inline-block;
position: relative;
width: 100%;
padding-bottom: 100%;
vertical-align: top;
overflow: hidden;
}
.svg-content-responsive {
display: inline-block;
position: absolute;
top: 10px;
left: 0;
}