main
Paul Schneider 9 years ago
parent d2f491c8c2
commit 0c2715a731
2 changed files with 24 additions and 14 deletions

@ -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);
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;}

@ -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" );
}); };

Loading…