-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
materials + information in README for all 4 experiments
- Loading branch information
1 parent
8377a22
commit c997b77
Showing
76 changed files
with
6,336 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Age: ___________ | ||
|
||
What is your gender? ___________ | ||
|
||
Please rate your overall ability in the English language: | ||
○ Native (learned from birth) | ||
○ Fully competent in speaking, listening, reading, and writing, but not native | ||
○ Limited but adequate competence in speaking, reading, and writing | ||
○ Restricted ability (e.g., only reading or speaking/listening) | ||
○ Some familiarity (e.g., a year of instruction in school) | ||
○ Prefer not to answer |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
.PennController { | ||
width: 40em !important; /* controls the width of the content area */ | ||
margin-left: 50vw; /* aligns the content area's left edge with the vertical center of the page */ | ||
transform: translateX(-50%); /* aligns the *vertical center* of the content area instead */ | ||
} | ||
|
||
.Text-container { | ||
margin: 25px auto; | ||
font-family: Arial; | ||
font-size: 20px; | ||
} | ||
|
||
|
||
.Button { | ||
margin: 25px auto; | ||
font-family: Arial; | ||
font-size: 20px; | ||
} | ||
|
||
.TextInput { | ||
margin: 25px auto; | ||
margin-left: 10px; | ||
font-family: Arial; | ||
font-size: 20px; | ||
} | ||
|
||
.sentence { | ||
font-family: Arial; | ||
font-size: 20px; | ||
margin-left: 100px; | ||
} | ||
|
||
.DropDown{ | ||
margin-left: 10px; | ||
margin-top: 25px; | ||
font-size: 20px; | ||
min-width: 150px; | ||
height: 25px; | ||
} | ||
|
||
.Scale-container { | ||
margin: 25px auto; | ||
font-family: Arial; | ||
font-size: 20px; | ||
line-height: 150%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.html { | ||
text-align: center; | ||
margin-bottom: 2em; | ||
} | ||
|
||
.bar { | ||
margin-top: 50px; | ||
width: 300px; | ||
height: 20px; | ||
/*position: relative;*/ | ||
/*background: green;*/ | ||
} | ||
|
||
.handle, .handle-label, .scale-label { | ||
font-family: Arial; | ||
position: absolute; | ||
} | ||
.handle { | ||
width: 30px; | ||
height: 30px; | ||
cursor: default; | ||
font-face: bold; | ||
border: 1px solid white; | ||
} | ||
|
||
.button { | ||
width: 7em; | ||
height: 1.5em; | ||
background: #26396B; | ||
color: white; | ||
font-family: Arial; | ||
font-weight: bold; | ||
cursor: pointer; | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-top: 4em; | ||
border-radius: 5px; | ||
padding-left: 0.5em; | ||
padding-right: 0.5em; | ||
padding-top: 0.5em; | ||
padding-bottom: 0.2em; | ||
vertical-align: middle; | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://farm.pcibex.net/r/qoksGd/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
body { | ||
color: black; | ||
background-color: white; | ||
margin-left: 0; | ||
margin-top: 5em; | ||
} | ||
.lindent { margin-left: 5em; } | ||
.sending-results { | ||
font-weight: bold; | ||
font-size: medium; | ||
} | ||
div.bar-container { | ||
border: 1px solid; | ||
border-color: #9ea4b1; | ||
background-color: white; | ||
} | ||
div.bar { | ||
background-color: blue; | ||
} | ||
p.progress-text { | ||
padding-top: 0.5em; | ||
margin-top: 0; | ||
margin-bottom: 2em; | ||
font-style: italic; | ||
font-size: small; | ||
font-family: Arial; | ||
} | ||
p.practice-box { | ||
color: blue; | ||
height: 1.5em; | ||
padding-bottom: 1em; | ||
font-size: small; | ||
text-align: center; | ||
} | ||
span.retry { | ||
color: blue; | ||
font-weight: bold; | ||
text-decoration: none; | ||
cursor: pointer; | ||
} | ||
span.retry:hover { | ||
text-decoration: underline; | ||
} | ||
span.retry:visited { | ||
color: blue; | ||
} |
Oops, something went wrong.