diff options
| author | J08nY | 2016-04-29 00:09:43 +0200 |
|---|---|---|
| committer | J08nY | 2016-04-29 00:09:43 +0200 |
| commit | 7caff3e0edcf8982ec716143ed030b2790061b39 (patch) | |
| tree | 16673b30ff5fcb35c53bdcbeeea0cf0fa9b22d25 /index.css | |
| parent | e243829840896b29c2508d3984b229adc3074edc (diff) | |
| download | omniplex-master.tar.gz omniplex-master.tar.zst omniplex-master.zip | |
Diffstat (limited to 'index.css')
| -rw-r--r-- | index.css | 67 |
1 files changed, 66 insertions, 1 deletions
@@ -1,4 +1,69 @@ +html, body { + width: 100%; + height: 100%; +} + body { + background-color: #ffffff; + margin: 0; + overflow: hidden; + font-family: arial, sans-serif; +} + +#container { + position: absolute; + + width: 100%; + height: 100%; + + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +#block { + position: absolute; + + width: 100%; + height: 100%; + + background-color: rgba(0, 0, 0, 0.5); +} + +#instructions { width: 100%; height: 100%; -}
\ No newline at end of file + + display: -webkit-box; + display: -moz-box; + display: box; + + -webkit-box-orient: horizontal; + -moz-box-orient: horizontal; + box-orient: horizontal; + + -webkit-box-pack: center; + -moz-box-pack: center; + box-pack: center; + + -webkit-box-align: center; + -moz-box-align: center; + box-align: center; + + color: #ffffff; + text-align: center; + + cursor: default; + + text-shadow: 1px 3px 9px rgba(0, 0, 0, 0.4), + 3px 6px 8px rgba(0, 0, 0, 0.1), + -3px 6px 8px rgba(0, 0, 0, 0.1); + +} + + +#heading { + font-size: xx-large; +} + + |
