-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplotertestui.css
121 lines (94 loc) · 1.85 KB
/
plotertestui.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
* {
outline: none;
}
#inputfunc{
font-size: 24px;
padding:0.3em 0em;
}
.funcnot{
font-family: 'Artifika';
font-size: 20px;
}
#plot-container{
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 75%;
}
#workspace{
background-color:#fdfcfc;
padding-bottom: 0;
transition: all 100ms;
}
#navbarmain{
background: #fdfcfc;
z-index:99;
/*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
}
#plotarea{
margin:0 0 0 2em;
}
.butn{
background: transparent;
border:rgba(0,150,255,0.5) solid 2px;
border-radius:10px;
font-size:14px;
font-family: Inter,sans-serif;
color:rgba(0,150,255,0.5);
font-weight: 600;
outline: none;
cursor: pointer;
transition: all 100ms ease-in-out;
}
.butn:focus{
outline: none;
}
.butn:hover{
background: rgba(0,150,255,0.3);
color: #fdfcfc;
border: rgba(0,150,255,0.5) solid 3px;
}
@media screen and (orientation: portrait) {
#plotarea{
width:100%;
margin:0;
}
#controls{
height:20%;
}
}
.dropdown-toggle::after {
content: none;
}
.btn-round{
border-radius: 50%;
width:30px;
height: 30px;
padding:0;
margin:0.3rem 0.3rem;
}
/*dark mode classes*/
.dark-bg{ /*to be applied to navbar, controls, workspace, and input fields*/
background-color: #25232D!important;
color: #fdfcfc;
}
.bg-dark{
background-color: #26242E!important;
}
.navbar{
transition: all 100ms;
}
#controls{
transition: all 100ms;
margin:0;
/*border:rgb(82,154,226) 2px solid;*/
background-color: #fdfcfc;
z-index: 0;
border-radius: 10px!important;
}
body{
background-color: #fdfcfc;
image-rendering: high-quality;
transition: all 100ms;
}