-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
125 lines (102 loc) · 2.35 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
/*Copyright (C) 2021 Pierre Kreins
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
.navbar{
background-color: #004a99;
}
#logo {
background-color: white;
border-radius: 2px;
}
.eingabe{
width: 300px;
}
.ableitungI {
background-color: var(--bs-purple);
}
.ableitungII {
background-color: var(--bs-orange);
}
.ableitungIII {
background-color: var(--bs-teal);
}
.electrode{
width: 100px;
height: 100px;
cursor: move;
}
.source{
width: 48px;
height: 70px;
touch-action: none;
user-select: none;
cursor: move;
}
#plus{
position: absolute;
left: 60%;
top: calc(50% - 45px);
}
#minus{
position: absolute;
left: 40%;
top: calc(50% - 45px);
}
#electrode1{
position: absolute;
left: calc(100% - 120px);
top: 10px;
height: 70px;
}
#electrode2{
position: absolute;
left: 30px;
top: 10px;
height: 70px;
}
#electrode3{
position: absolute;
left: calc(100% - 120px);
top: calc(100% - 90px);
height: 70px;
}
#mainCanvas{
height: 100%;
width: 100%;
}
#screen {
overflow: hidden;
border-radius: 5px;
width: 100%;
max-height: 550px;
clear: both;
border: 1px solid rgba(0,0,0,.2);
background-color:white;
background-image: linear-gradient(90deg, rgba(200,0,0,.08) 50%, transparent 50%), linear-gradient(rgba(200,0,0,.08) 50%, transparent 50%);
background-size:30px 30px;
}
#oscilloCanvas{
height: 100%;
width: 100%;
}
#oscilloCase {
border-radius: 18px;
padding: 15px;
border: 1px solid black;
background-color: #cfcfcf;
}
#oscillo {
overflow: hidden;
border-radius: 25px;
clear: both;
border: 1px solid black;
background-color: lightblue;
}