From 0c2715a7316fe36dcd179e1400ed32444056bb01 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Tue, 25 Apr 2017 12:15:25 +0200 Subject: [PATCH] style --- Yavsc/wwwroot/css/main/site.css | 31 +++++++++++++++++++++++-------- Yavsc/wwwroot/js/site.js | 7 +------ 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/Yavsc/wwwroot/css/main/site.css b/Yavsc/wwwroot/css/main/site.css index 8c109694..c1c8ca26 100644 --- a/Yavsc/wwwroot/css/main/site.css +++ b/Yavsc/wwwroot/css/main/site.css @@ -148,17 +148,13 @@ select, /* Carousel */ .carousel-caption-s p { - text-decoration: overline; - text-decoration-line: overline; - -webkit-text-shadow: inset 0 3px 5px rgb(255, 200, 255); + -webkit-text-shadow: 3px 3px 7px rgb(0, 0, 0); margin:0.5em; padding:.5em; - animation: mymove 3s infinite; - background-color: rgba(255,255,255,.6); - font-family: "Arial"; + animation: mymove 4s infinite; + font-family: "Arial"; font-weight: 800; - font-size: xx-large; - line-height: 1.1; + font-size: x-large; text-shadow: 3px 3px 7px rgb(0, 0, 0); color: white; } @@ -197,7 +193,26 @@ main.container { margin-left: 1em; margin-right: 1em; } +@media (max-width: 767px) { +main.container { + padding-right: .3em; + padding-left: .3em; + margin-left: .3em; + margin-right: .3em; +} +.navbar-brand { + float: left; + height: 50px; + padding: 5px 5px; + font-size: 16px; + line-height: 18px; +} +.carousel-caption-s p { + margin:0.2em; + padding:.2em; +} +} @-webkit-keyframes mymove { from {text-decoration-color: red;} diff --git a/Yavsc/wwwroot/js/site.js b/Yavsc/wwwroot/js/site.js index d4571e56..f5ba098d 100755 --- a/Yavsc/wwwroot/js/site.js +++ b/Yavsc/wwwroot/js/site.js @@ -27,14 +27,9 @@ $('input.Blogcirle[type=checkbox]').on('change',allowCircleToBlog); } ); -var notifClick = function(nid) { $.get('/api/dimiss/click/'+nid).done(function(data) { - console.log( "second success" ); - console.log(data); - +var notifClick = function(nid) { $.get('/api/dimiss/click/'+nid).done(function() { }) .fail(function() { - console.log( "error" ); }) .always(function() { - console.log( "finished" ); }); };