diff options
Diffstat (limited to 'public/assets/stylesheets/app.css')
| -rwxr-xr-x | public/assets/stylesheets/app.css | 35 |
1 files changed, 30 insertions, 5 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 894483d..bc52d5a 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -151,7 +151,7 @@ a{ } .topLinks a.ion-help-circled { font-size: 24px; - padding: 21px 27px 0 8px; + padding: 18px 27px 0 8px; } .topLinks a.ion-help-circled:hover { background:transparent; @@ -668,6 +668,7 @@ iframe.embed { display: table; height: 50vh; float: left; + background:white!important; } .profilepage .bio a:hover { @@ -716,9 +717,9 @@ iframe.embed { .profilepage .bio h2 { - text-align: left; - font-weight: 100; - font-size: 70px; + text-align: left; + font-weight: 500; + font-size: 18px; } .profilepage .bio span { font-size: 16px; @@ -1702,6 +1703,21 @@ input[type="range"]::-webkit-slider-thumb { .wallpaperResizeControls span { cursor: pointer; } +.floodMessage { + display: none; + animation: flicker 0.2s infinite; + color: black; + float: left; + margin: 10px 5px 5px 5px; + font-size: 13px; + font-weight: 300; + text-align: center; +} +@keyframes flicker { + 49% { color: black; } + 50% { color: red; } + 100% { color: red; } +} #color-picker { position: relative; @@ -2722,9 +2738,18 @@ a[data-role="forgot-password"] { width: 170px; background: rgba(255,255,255,0.95); padding: 6px 8px 8px 8px; - position: fixed; bottom: 10px; left: 10px; border: 1px solid; } +} + +@media screen and (orientation:landscape) { + .mobile #scene:after{ + content:url(/assets/img/360.png); + z-index: 3; + position: fixed; + bottom: -3px; + right: -3px; + } }
\ No newline at end of file |
