1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-12 08:38:10 +00:00

Merge pull request #389 from thewhodidthis/bf#388--git-cleanup

git: clear out extra JS / CSS index files in package root
This commit is contained in:
Alain Pitiot 2021-06-11 10:18:49 +02:00 committed by GitHub
commit 117bca855f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 154 deletions

149
index.css
View File

@ -1,149 +0,0 @@
/* project and resource dialogs */
label, input, select {
display: block;
padding-bottom: .5em;
}
input.text, select.text {
margin-bottom: 1em;
width: 95%;
padding: .5em;
}
fieldset {
padding: 0;
border: 0;
margin-top: 1em;
}
a, a:active, a:focus, a:visited {
outline: 0;
color: #007EB7;
}
a:hover {
color: #000000;
}
.progress {
padding: .5em 0 .5em 0;
}
.logo {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
margin-bottom: 1em;
}
/* don't display close button in the top right corner of the box */
.no-close .ui-dialog-titlebar-close {
display: none;
}
.ui-dialog-content {
margin-top: 1em;
}
/* for mobile phones only */
@media only screen and (max-width: 1080px) {
.ui-widget {
-ms-transform: scale(2);
-webkit-transform: scale(2);
transform: scale(2);
}
.ui-widget .ui-progressbar {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
.ui-dialog .ui-dialog-buttonpane {
padding-top: 1em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
.ui-dialog .ui-dialog-titlebar {
padding: 1em 2em;
}
.ui-dialog-titlebar .ui-button {
margin-right: 1em;
}
.ui-dialog-titlebar .ui-dialog-titlebar-close {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
}
@media only screen and (max-width: 1080px) and (orientation:landscape) {
.ui-widget {
-ms-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
.ui-widget .ui-progressbar {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
.ui-dialog .ui-dialog-buttonpane {
padding-top: 1em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
.ui-dialog .ui-dialog-titlebar {
padding: 1em 2em;
}
.ui-dialog-titlebar .ui-button {
margin-right: 1em;
}
.ui-dialog-titlebar .ui-dialog-titlebar-close {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
}
/* Initialisation message (which will disappear behind the canvas) */
#root:after {
content: "initialising the experiment...";
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* Initialisation message for IE11 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#root:after {
content: "initialising the experiment... | Internet Explorer / Edge [beta]";
color: #A05000;
font-weight: bold;
}
}

View File

@ -1,5 +0,0 @@
export * as util from './js/util/index.js';
export * as core from './js/core/index.js';
export * as data from './js/data/index.js';
export * as visual from './js/visual/index.js';
export * as sound from './js/sound/index.js';