summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorryderr <r@okfoc.us>2014-11-04 14:38:54 -0500
committerryderr <r@okfoc.us>2014-11-04 14:38:54 -0500
commit21bd8c5bed4e74681d6d628744c3a59fec517c15 (patch)
tree5c2f6cc5aec406c23f643e64e08d7bc5df4fdfb9
parent9acdfee187cff9131e1add9e74a0eecb002ed1b5 (diff)
flood message and overflow issue
-rwxr-xr-xpublic/assets/stylesheets/app.css27
1 files changed, 22 insertions, 5 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css
index 3fa7ee0..730ead2 100755
--- a/public/assets/stylesheets/app.css
+++ b/public/assets/stylesheets/app.css
@@ -24,6 +24,10 @@ body{
overflow-x:hidden;
}
+body.editing{
+ overflow:hidden;
+}
+
::-moz-selection {
color: white;
background: black;
@@ -1741,17 +1745,29 @@ input[type="range"]::-webkit-slider-thumb {
.floodMessage {
display: none;
animation: flicker 0.2s infinite;
+ -webkit-animation: flicker 0.2s infinite;
+ -moz-animation: flicker 0.2s infinite;
color: black;
float: left;
margin: 10px 5px 5px 5px;
- font-size: 13px;
- font-weight: 300;
+ font-size: 10px;
text-align: center;
+ font-weight:600;
+ color:red;
+ text-transform:uppercase;
+ text-align:left;
+}
+.floodMessage:before {
+ content:"CLICK ON WALL OR ";
}
@keyframes flicker {
- 49% { color: black; }
- 50% { color: red; }
- 100% { color: red; }
+ 50% { opacity:0.7; }
+}
+@-webkit-keyframes flicker {
+ 50% { opacity:0.7; }
+}
+@-moz-keyframes flicker {
+ 50% { opacity:0.7; }
}
#color-picker {
@@ -2310,6 +2326,7 @@ form li textarea {
display: table;
background-size: cover;
background-position: center;
+ background-attachment: fixed;
margin-top: 63px;
}
.hero .circle {