Skip to content

Commit 37772e6

Browse files
committed
0 parents  commit 37772e6

32 files changed

+3734
-0
lines changed

exp-scattering-parameters-circulator-iitr/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+
}
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+

exp-scattering-parameters-circulator-iitr/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.

exp-scattering-parameters-circulator-iitr/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.

exp-scattering-parameters-circulator-iitr/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.

0 commit comments

Comments
 (0)