-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (61 loc) · 1.16 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
body, html, #main {
height:100%;
}
#sidebar {
overflow-y:scroll;
}
#expressionRendering {
font-size: 1.5em !important;
margin:1em;
}
@media only screen and (min-width : 960px) {
a[href='#sidebar'] {
display: none;
}
}
#plotBox {
margin: 0 auto;
}
.navbar-group{
text-align: center;
}
.nav-title{
font-size: 24px;
margin-bottom: 10px;
}
#loadingScreen {
position:fixed;
text-align:center;
width:100%;
height:100%;
z-index:100000;
background-color:rgba(0,0,0,.2);
justify-content:center;
align-content:center;
flex-direction:column;
}
.modal {
display:flex !important;
opacity:0 !important;
z-index:100;
transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s, opacity 0.5s;
width:0px;
height:0px;
top:50px;
left:calc(100% - 100px);
}
.modal.active {
width:100% !important;
height:100% !important;
left: 0 !important;
top: 0 !important;
opacity:1 !important;
}
@keyframes fadeIn {
0%, 40% { opacity: 0; }
100% { opacity: 1; }
}
.modal.active .modal-overlay {
animation: fadeIn 1s ease-in;
animation-fill-mode: forwards;
}