Skip to content

Commit 8b70ba9

Browse files
committed
0 parents  commit 8b70ba9

File tree

213 files changed

+48595
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+48595
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
This folder has
2+
### Aim
3+
### Theory
4+
### Procedure
5+
### Pre Test
6+
### Post Test
7+
### References

aim.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#### To study the Characteristics of Directional Coupler.

assesment.log

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
=/pretest.json
2+
{
3+
_: [],
4+
f: [
5+
'/home/runner/work/exp-directional-coupler-measuring-iitr/exp-directional-coupler-measuring-iitr/experiment/pretest.json'
6+
],
7+
files: [
8+
'/home/runner/work/exp-directional-coupler-measuring-iitr/exp-directional-coupler-measuring-iitr/experiment/pretest.json'
9+
],
10+
c: 'assessment',
11+
contentTypes: 'assessment',
12+
'content-types': 'assessment',
13+
'$0': 'validate'
14+
}
15+
Validated true
16+
=/posttest.json
17+
{
18+
_: [],
19+
f: [
20+
'/home/runner/work/exp-directional-coupler-measuring-iitr/exp-directional-coupler-measuring-iitr/experiment/posttest.json'
21+
],
22+
files: [
23+
'/home/runner/work/exp-directional-coupler-measuring-iitr/exp-directional-coupler-measuring-iitr/experiment/posttest.json'
24+
],
25+
c: 'assessment',
26+
contentTypes: 'assessment',
27+
'content-types': 'assessment',
28+
'$0': 'validate'
29+
}
30+
Validated true

assets/css/bootstrap.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
.slidecontainer {
2+
text-align: center;
3+
}
4+
5+
.slider {
6+
width: 10%;
7+
}
8+
9+
.text-box {
10+
padding: 7px 20px;
11+
margin: 8px 0;
12+
box-sizing: border-box;
13+
width: 14%;
14+
}
15+
16+
.legend { list-style: none; }
17+
.legend li { padding-bottom : 1.5vw; width: 20vw; }
18+
.legend span { border: 0.1vw solid black; float: left; border-radius: 50%;}
19+
.legend .grey { background-color: grey; }
20+
.legend .green { background-color: #a4c652; }
21+
.legend .black { background-color: black; }
22+
23+
.button-input {
24+
border-radius: 50vw;
25+
background-color: #288ec8;
26+
border: none;
27+
color: white;
28+
padding: 1%;
29+
margin-left: 1%;
30+
margin-right: 1%;
31+
padding-bottom: 1%;
32+
padding-top: 1%;
33+
padding-left: 2%;
34+
padding-right: 2%;
35+
}
36+
37+
.button-input:hover {
38+
background-color:gray;
39+
cursor:pointer;
40+
}
41+
42+
.comment-box {
43+
position: relative;
44+
padding: 1vw;
45+
width: 30vw;
46+
text-align: center;
47+
}
48+
49+
.instruction-box {
50+
position: relative;
51+
width: 100%;
52+
transition: width 0.2s ease-out;
53+
border: 0.1vw solid grey;
54+
z-index : 10;
55+
}
56+
57+
.collapsible {
58+
background-color: Transparent;
59+
color: "grey";
60+
cursor: pointer;
61+
width: 100%;
62+
border: none;
63+
text-align: center;
64+
outline: none;
65+
font-weight: bold;
66+
padding-top: 1%;
67+
padding-bottom: 1%;
68+
}
69+
70+
.collapsible::-moz-focus-inner {
71+
border: 0;
72+
}
73+
74+
.active, .collapsible:hover {
75+
background-color: "white";
76+
}
77+
78+
/*The unicode \25BE is for ▾ (Dropdown arrow) */
79+
.collapsible:after {
80+
content: "\25BE";
81+
color: "grey";
82+
font-weight: bold;
83+
float: right;
84+
margin-left: 5px;
85+
}
86+
87+
.active:after {
88+
content: "\25B4";
89+
}
90+
91+
.content {
92+
padding: 0 1.8vw;
93+
max-height: 0;
94+
overflow: hidden;
95+
transition: max-height 0.2s ease-out;
96+
background-color: "white";
97+
}

assets/css/common-styles.css

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
.slidecontainer {
2+
text-align: center;
3+
}
4+
5+
.slider {
6+
width: 10%;
7+
}
8+
9+
.text-box {
10+
padding: 7px 20px;
11+
margin: 8px 0;
12+
box-sizing: border-box;
13+
width: 14%;
14+
}
15+
16+
.legend{
17+
font-size: 1.4vw;
18+
}
19+
.legend { list-style: none; }
20+
.legend li { padding-bottom : 1.5vw; width: 20vw; }
21+
.legend span { border: 0.1vw solid black; float: left; width: 2vw; height: 2vw; margin-right : 0.5vw; border-radius: 50%;}
22+
.legend .grey { background-color: grey; }
23+
.legend .green { background-color: #a4c652; }
24+
.legend .black { background-color: black; }
25+
26+
.button-input {
27+
border-radius: 50vw;
28+
background-color: #288ec8;
29+
border: none;
30+
color: white;
31+
padding: 1%;
32+
font-size: 1.3vw;
33+
margin-left: 1%;
34+
margin-right: 1%;
35+
padding-bottom: 1%;
36+
padding-top: 1%;
37+
padding-left: 2%;
38+
padding-right: 2%;
39+
}
40+
41+
.button-input:hover {
42+
background-color:gray;
43+
cursor:pointer;
44+
}
45+
46+
.comment-box {
47+
position: relative;
48+
padding: 1vw;
49+
width: 30vw;
50+
font-size: 1.5vw;
51+
text-align: center;
52+
}
53+
54+
.instruction-box {
55+
position: relative;
56+
width: 100%;
57+
transition: width 0.2s ease-out;
58+
border: 0.1vw solid grey;
59+
font-size: 1.5vw;
60+
z-index : 10;
61+
}
62+
63+
.collapsible {
64+
background-color: Transparent;
65+
color: "grey";
66+
cursor: pointer;
67+
width: 100%;
68+
border: none;
69+
text-align: center;
70+
outline: none;
71+
font-size: 1.5vw;
72+
font-weight: bold;
73+
padding-top: 1%;
74+
padding-bottom: 1%;
75+
}
76+
77+
.collapsible::-moz-focus-inner {
78+
border: 0;
79+
}
80+
81+
.active, .collapsible:hover {
82+
background-color: "white";
83+
}
84+
85+
.collapsible:after {
86+
content: '\25BE';
87+
color: "grey";
88+
font-weight: bold;
89+
float: right;
90+
margin-left: 5px;
91+
}
92+
93+
.active:after {
94+
content: "\25B4";
95+
}
96+
97+
.content {
98+
padding: 0 1.8vw;
99+
max-height: 0;
100+
overflow: hidden;
101+
transition: max-height 0.2s ease-out;
102+
background-color: "white";
103+
}
104+

assets/css/fontawesome.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/github-markdown.min.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/katex.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/toast.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/* assets/css/toast.css */
2+
.custom-toast-popup {
3+
border-radius: 10px; /* Rounded corners */
4+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Custom shadow */
5+
display: flex;
6+
justify-content: center;
7+
align-items: center;
8+
position: fixed; /* Fixed positioning */
9+
top: 50%; /* Center vertically */
10+
left: 50%; /* Center horizontally */
11+
transform: translate(-50%, -50%); /* Adjust for exact centering */
12+
z-index: 1000; /* Ensure it appears above other elements */
13+
padding: 10px;
14+
color: #fff;
15+
font-size: 1rem;
16+
}

0 commit comments

Comments
 (0)