summaryrefslogtreecommitdiff
path: root/frontend/static/sass/stylesheets/roomlist.css
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/static/sass/stylesheets/roomlist.css')
-rw-r--r--frontend/static/sass/stylesheets/roomlist.css179
1 files changed, 179 insertions, 0 deletions
diff --git a/frontend/static/sass/stylesheets/roomlist.css b/frontend/static/sass/stylesheets/roomlist.css
new file mode 100644
index 0000000..c74dcd2
--- /dev/null
+++ b/frontend/static/sass/stylesheets/roomlist.css
@@ -0,0 +1,179 @@
+/* line 1, ../src/roomlist.sass */
+.roomdiv {
+ width: 200px;
+ height: 100px;
+ display: block;
+ float: left;
+ text-align: center;
+ vertical-align: bottom;
+ position: relative;
+ font-size: 30px;
+ color: white;
+ padding-top: 160px;
+ background-color: black;
+ cursor: pointer;
+}
+/* line 14, ../src/roomlist.sass */
+.roomdiv * {
+ cursor: pointer;
+}
+/* line 16, ../src/roomlist.sass */
+.roomdiv .count {
+ font-size: 160px;
+ color: white;
+ position: absolute;
+ left: 0;
+ top: 10px;
+ width: 100%;
+ text-align: center;
+ vertical-align: middle;
+ z-index: 3;
+ opacity: 0.9;
+}
+/* line 27, ../src/roomlist.sass */
+.roomdiv .roomname {
+ position: absolute;
+ left: 0;
+ top: 180px;
+ width: 100%;
+ text-align: center;
+ vertical-align: middle;
+ opacity: 0.9;
+ z-index: 4;
+}
+/* line 36, ../src/roomlist.sass */
+.roomdiv .roombg {
+ position: absolute;
+ background-position: center center;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0.8;
+ z-index: 1;
+ cursor: pointer;
+}
+/* line 47, ../src/roomlist.sass */
+.roomdiv:hover .roomname {
+ opacity: 1;
+}
+/* line 49, ../src/roomlist.sass */
+.roomdiv:hover .count {
+ opacity: 1;
+}
+/* line 51, ../src/roomlist.sass */
+.roomdiv:hover .roombg {
+ opacity: 0.9;
+}
+
+/* line 53, ../src/roomlist.sass */
+#roomlist {
+ padding-top: 90px;
+}
+
+/* line 55, ../src/roomlist.sass */
+#roomlist a {
+ text-decoration: none;
+ cursor: pointer;
+}
+
+/* line 58, ../src/roomlist.sass */
+body {
+ overflow-y: scroll;
+ background: black;
+}
+
+/* line 61, ../src/roomlist.sass */
+#logo {
+ top: 5px;
+ left: 10px;
+}
+/* line 65, ../src/roomlist.sass */
+#logo h1#header {
+ font-size: 30px;
+ color: #44ddff;
+ top: 8px;
+ max-width: 500px;
+}
+/* line 71, ../src/roomlist.sass */
+#logo h2.preamblish {
+ display: inline-block;
+ position: relative;
+ top: -15px;
+ left: 10px;
+ font-size: 12px;
+ color: white;
+ max-width: 250px;
+ padding-right: 20px;
+}
+
+/* line 81, ../src/roomlist.sass */
+#curtain {
+ background: #080810;
+ opacity: 0.3;
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 10;
+ display: none;
+}
+
+/* line 91, ../src/roomlist.sass */
+#login {
+ background: black;
+ display: block;
+ width: 50%;
+ top: 20%;
+ left: 50%;
+ margin-left: -25%;
+ padding: 30px;
+ padding-bottom: 60px;
+ z-index: 20;
+ position: fixed;
+ text-align: center;
+ box-shadow: 0 5px 10px black;
+}
+/* line 104, ../src/roomlist.sass */
+#login img {
+ margin-bottom: 20px;
+}
+/* line 106, ../src/roomlist.sass */
+#login label {
+ min-width: 20%;
+ display: inline-block;
+ text-align: right;
+ padding-right: 10px;
+ font-size: 18px;
+ color: white;
+}
+/* line 113, ../src/roomlist.sass */
+#login #button-shim {
+ width: 30%;
+ display: inline-block;
+ text-align: left;
+ padding: 10px 10px 10px 0;
+ margin-right: 20px;
+}
+/* line 119, ../src/roomlist.sass */
+#login #button-shim button {
+ padding: 2px 5px;
+}
+/* line 121, ../src/roomlist.sass */
+#login #login-username, #login #login-password {
+ width: 30%;
+ margin-right: 10px;
+ font-size: 24px;
+ border: 2px solid #880066;
+ padding: 10px;
+}
+/* line 127, ../src/roomlist.sass */
+#login a {
+ color: #6688ff;
+ text-decoration: underline;
+}
+/* line 130, ../src/roomlist.sass */
+#login button {
+ font-size: 24px;
+}