-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
47 lines (40 loc) · 847 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
.mathematica-plot-modal {
width: 50%;
}
.mathematica-plot-modal .mathematica-plot-modal-settings {
max-height: 60vh;
overflow-y: auto;
width: 100%;
}
.mathematica-plot-modal .mathematica-plot-modal-preview {
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
overflow: auto;
}
.mathematica-plot-modal .mathematica-plot-modal-content-container {
display: flex;
gap: 16px;
}
.mathematica-plot {
position: relative;
}
.mathematica-plot-edit-btn {
padding-bottom: var(--size-2-2);
padding-right: var(--size-2-3);
position: absolute;
right: var(--size-2-2);
bottom: var(--size-2-2);
opacity: 0;
}
.mathematica-plot:hover .mathematica-plot-edit-btn {
transition: 0s;
opacity: 1;
}
@media only screen and (max-width: 1550px) {
.mathematica-plot-modal {
width: 75%;
}
}