-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
189 lines (154 loc) · 2.92 KB
/
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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
section {
border: 4px solid grey;
border-radius: 15px;
box-shadow: 5px 5px 5px grey;
padding: 20px;
margin: 10px;
}
.plotSection {
height: 400px;
}
.tableRequest {
width: 100%;
display: flex;
}
input[type=text] {
flex-grow: 1;
padding: 5px 5px;
border: 1px solid #ccc;
border-radius: 4px;
}
.toLeft {
float: left;
}
#plotter {
width: 100%;
height: 100%;
}
table, td, th {
border: 1px solid #ddd;
text-align: left;
}
table {
border-collapse: collapse;
}
th, td {
padding: 15px;
}
tr:nth-child(even) {
background-color: #f2f2f2
}
.tooltip .tooltiptext {
visibility: hidden;
background-color: grey;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 10px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.rollDisplay {
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
display: inline-block;
background-color: burlywood;
height: content-box;
}
.numberList {
overflow-y: scroll;
max-height: 200px;
}
/* Style The Dropdown Button */
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 5px;
/*font-size: 16px;*/
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
width: 500px;
max-width: 40vw;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
z-index: 1;
}
@media only screen and (max-width: 1100px) {
.to-the-right {
right: 0;
}
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Links inside the dropdown */
.dropdown-content > * {
padding: 5px 5px 5px 5px;
display: block;
text-align: left;
border: none;
}
.dropdown-content p, .dropdown-content a {
padding: 10px;
}
.dropdown-content .exampleClickable {
color: black;
text-decoration: none;
background-color: #f9f9f9;
}
/* Change color of dropdown links on hover */
.dropdown-content .exampleClickable:hover {
background-color: #f1f1f1
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
#title-area {
display: flex;
}
#title-area > div {
padding: 10px;
display: inline;
background-color: #dddddd;
/*flex-grow: 1;*/
}
#title-text-box {
width: 30%;
}
#title-image-box {
width: 70%;
}
#dice-bag {
width: auto;
height: 100%;
max-width: 100%;
object-fit: cover;
}
#starter {
list-style-type: none;
padding: 5px 5px 5px 200px;
}
#starter li {
display: inline;
padding: 10px;
}
.big-line {
alignment: center;
}