commit fc4a2b9599ab76de5478481c601653385635bb1f Author: Erdei Levente Date: Wed Dec 14 11:16:40 2022 +0100 initial commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..4c889e0 Binary files /dev/null and b/.DS_Store differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..cf18d9c --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + + + + + + + + Színházjegyek + + +
+
+ +
+
+ + + + + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..1138017 --- /dev/null +++ b/script.js @@ -0,0 +1,26 @@ +hely = new Array() + for(i = 1; i <= 15; i++) + { + if(i == 1) document.write("7500.- Ft") + if(i == 6) document.write("5900.- Ft") + if(i == 11) document.write("4500.- Ft") + + hely[i] = new Array() + document.write("" + i + ".") + for(j = 1; j <= 24; j++) + { + hely[i][j] = Math.floor((1 - Math.random() * Math.random()) * 2) + if(hely[i][j] == 1) + { + document.write("" + j + "") + } + else + { + document.write("" + j + "") + } + } + document.write("
") + if(i % 5 == 0) document.write("
") + } + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..f03ee6d --- /dev/null +++ b/style.css @@ -0,0 +1,56 @@ +div#szinhazterem + { + max-width : 620px ; + margin : 0 auto ; + } + + span.helyar + { + display : inline-block ; + float : right ; + margin : 40px -24px 0 0 ; + width : 128px ; + height : 60px ; + line-height : 60px ; + background-color : #AAF ; + text-align : center ; + font-size : 16px ; + font-weight : bold ; + transform : rotate(-90deg) ; + } + + span.sorszam + { + display : inline-block ; + width : 24px ; + height : 14px ; + margin-right : 8px ; + text-align : right ; + } + + span.szek + { + display : inline-block ; + margin : 6px 2px ; + width : 14px ; + height : 14px ; + border-radius : 2px ; + text-align : center ; + line-height : 14px ; + font-size : 9px ; + color : #333 ; + } + + span.foglalt + { + border : solid 1px #844 ; + background-color : #FAA ; + color : #600 ; + } + + span.szabad + { + border : solid 1px #484 ; + background-color : #8D8 ; + color : #040 ; + } \ No newline at end of file