-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (110 loc) · 1.77 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
121
122
123
124
125
126
127
html {
margin: 0;
padding: 0;
}
body {
background-color: #F8F6E3;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
input {
font-size: 1.3em;
}
label {
font-size: 1.1em;
}
#title {
font-size: 2.5em;
color: white;
text-align: center;
border: none;
font-weight: normal;
margin-top: 9px;
flex-grow: 1;
}
#blurb {
background-color: rgba(255, 255, 255, 0.386);
text-align: center;
margin: 1em auto 1em auto;
width: 500px;
padding: 0.5em;
border-radius: 5px;
}
#visual-title {
font-weight: bold;
font-size: 1.2em;
padding-bottom: 0.5em;
}
#array-visual {
margin: 1em;
flex-basis: 30em;
align-content: right;
}
header {
background-color:#f5e1bc;
background-size: cover;
width: 100%;
padding: 1em;
color: black;
}
button {
display:inline-block;
justify-content: center;
flex-direction: row;
border-radius: 15px;
height: 2.5rem;
width: 12rem;
text-align: center;
background-color:#cfab72;
font-size: 1.1em;
color: black;
margin: 1rem;
}
#mode-button {
height:40px;
width: 40px;
margin-left: auto;
}
rect:hover,
circle:hover,
text.circle:hover,
text.rect:hover {
cursor: pointer;
}
.subtext {
font-size: 0.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;
}
#representation {
display: flex;
justify-content: center;
margin-top: 5em;
flex-wrap: wrap;
}
.dark-mode {
background-color:#70695a;
color: black;
}
#bar {
display: flex;
flex-wrap: 1;
background-color: #cfab72;
justify-content: center;
border-radius: 8px;
}