summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-07-14 22:24:18 +0200
committerAki <please@ignore.pl>2024-07-14 23:05:47 +0200
commitdd6649ee2d7f80c4a46262de8ef840e6abf2393b (patch)
tree4ed23f2f636a03b963996e7fa0c4d098516f3deb /style.css
downloadcards-dd6649ee2d7f80c4a46262de8ef840e6abf2393b.zip
cards-dd6649ee2d7f80c4a46262de8ef840e6abf2393b.tar.gz
cards-dd6649ee2d7f80c4a46262de8ef840e6abf2393b.tar.bz2
A stub flippable cardHEADmaster
The form is not a form and it does not work for obvious reasons. This could be implemented all in SVG, HTML, JavaScript, or have some actual backend to generate questions and gather answers to get proper statistics. This is intended to recreate experiment performed for "On the Perception of Incongruity: A Paradigm" [[1949 Bruner and Postman]] as briefly explained in "The Structure of Scientific Revolutions" [[1962 Kuhn]].
Diffstat (limited to 'style.css')
-rw-r--r--style.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..641b380
--- /dev/null
+++ b/style.css
@@ -0,0 +1,31 @@
+body {
+ background-color: #293e28;
+}
+
+body, input {
+ color: #e6fee5;
+ font-family: monospace;
+ font-size: 16px;
+}
+
+main {
+ max-width: 32em;
+ width: 100%;
+ margin: 0 auto;
+ text-align: center;
+}
+
+img, object {
+ max-width: 50%;
+}
+
+input[type=text] {
+ background: none;
+ border: none;
+ border-bottom: 1px solid #e6fee5;
+}
+
+input[type=submit] {
+ background: none;
+ border: 1px solid #e6fee5;
+}