Added css styles
czaks: removed blinky stylesheets, rearranged images, made commit sane
This commit is contained in:
parent
fc1f1ef315
commit
43545d000d
|
@ -0,0 +1,91 @@
|
||||||
|
/**
|
||||||
|
* burichan.css
|
||||||
|
* For 55ch adapted from kusaba by sinuca
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
font-family: serif;
|
||||||
|
background: #EEF2FF;
|
||||||
|
color: #000000;
|
||||||
|
font-size: 12pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-family: serif;
|
||||||
|
font-size: 24pt;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
text-decoration: none;
|
||||||
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #DD0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.banner {
|
||||||
|
background-color: #0010E0;
|
||||||
|
color: #FFF;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.name {
|
||||||
|
font-family: serif;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo span.unimportant, p.fileinfo a {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply {
|
||||||
|
border: none;
|
||||||
|
font-family: serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.post-hover {
|
||||||
|
border-width: 1px;
|
||||||
|
border-style: none solid solid none;
|
||||||
|
border-color: #B7C5D9;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color: #34345C;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a:hover {
|
||||||
|
color: #DD0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-top: 1px groove #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist {
|
||||||
|
font-size: 12pt;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0.2em 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#playerW {
|
||||||
|
display: none!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.board_image {
|
||||||
|
border:0px;
|
||||||
|
}
|
|
@ -0,0 +1,75 @@
|
||||||
|
img {
|
||||||
|
float:none!important;
|
||||||
|
margin: auto;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
/*max-height: 150px;
|
||||||
|
max-width: 200px;*/
|
||||||
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.55);
|
||||||
|
border: 2px solid rgba(153, 153, 153, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
img:hover {
|
||||||
|
border: 2px solid rgba(153, 153, 153, 0.27);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
div.threads{
|
||||||
|
text-align: center;
|
||||||
|
margin-left: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.thread {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
margin-bottom:25px;
|
||||||
|
margin-left: 20px;
|
||||||
|
margin-right: 15px;
|
||||||
|
text-align:center;
|
||||||
|
font-weight:normal;
|
||||||
|
width:205px;
|
||||||
|
overflow:hidden;
|
||||||
|
position: relative;
|
||||||
|
font-size:11px;
|
||||||
|
padding: 15px;
|
||||||
|
background: rgba(182, 182, 182, 0.12);
|
||||||
|
border: 2px solid rgba(111, 111, 111, 0.34);
|
||||||
|
max-height:300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.thread:hover {
|
||||||
|
background: #D6DAF0;
|
||||||
|
border-color: #B7C5D9;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.grid-size-small {
|
||||||
|
width: 200px;
|
||||||
|
max-width: 200px;
|
||||||
|
max-height: 350px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.grid-size-large {
|
||||||
|
width: 300px;
|
||||||
|
max-width: 300px;
|
||||||
|
max-height: 450px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.thread-image {
|
||||||
|
height: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 420px) {
|
||||||
|
ul#Grid {
|
||||||
|
padding-left: 18px;
|
||||||
|
}
|
||||||
|
div.thread {
|
||||||
|
width: auto;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
div.threads {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,145 @@
|
||||||
|
/**
|
||||||
|
* confraria.css
|
||||||
|
* For 55chan adapted from kusaba by sinuca
|
||||||
|
*/
|
||||||
|
body{
|
||||||
|
font-family: arial,helvetica,sans-serif;
|
||||||
|
font-size: 10pt;
|
||||||
|
background-image: url('img/confraria_hatstand.png'), url('img/confraria_foot.png'), url('img/confraria_bg.png');
|
||||||
|
background-repeat: no-repeat, repeat-x, repeat;
|
||||||
|
background-attachment: fixed, fixed, fixed;
|
||||||
|
background-position: 75% bottom, bottom center, top left;
|
||||||
|
color: #C5C8C6;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
margin-top: 5px;
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #C5C8C6;
|
||||||
|
font-family: Tahoma, sans-serif;
|
||||||
|
font-size: 28px;
|
||||||
|
letter-spacing: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #C5C8C6;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
color: rgb(129, 162, 190);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: rgb(95, 137, 172);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.banner {
|
||||||
|
background-color: #282A2E;
|
||||||
|
color: #C5C8C6;
|
||||||
|
padding: 1px;
|
||||||
|
font-size: larger;
|
||||||
|
margin-top: 8px;
|
||||||
|
border: 1px solid #111;
|
||||||
|
}
|
||||||
|
|
||||||
|
form table tr th {
|
||||||
|
background: #282A2E;
|
||||||
|
color: #C5C8C6;
|
||||||
|
border: 1px solid #111;
|
||||||
|
padding: 0px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.name {
|
||||||
|
color: #C5C8C6;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.subject {
|
||||||
|
color: #CC1105;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo span.unimportant, p.fileinfo a {
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply {
|
||||||
|
background: #282A2E;
|
||||||
|
border: 1px solid #282A2E;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div.post.reply.post-hover {
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color: rgb(129, 162, 190);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a:hover {
|
||||||
|
color: rgb(95, 137, 172);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.highlighted {
|
||||||
|
background: #4A4C4F;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email span.name {
|
||||||
|
color: rgb(129, 162, 190);
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email:hover span.name {
|
||||||
|
color: rgb(95, 137, 172);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages {
|
||||||
|
background: transparent;
|
||||||
|
border: 2px groove;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages a {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages a.selected {
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-width: 1px medium medium;
|
||||||
|
border-style: solid none none;
|
||||||
|
border-color: #282A2E
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist {
|
||||||
|
font-size: 9pt;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a {
|
||||||
|
padding: 0.2em 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desktop-style div.boardlist:nth-child(1):hover, .desktop-style div.boardlist.cb-menu:nth-child(1) {
|
||||||
|
background-color: rgba(50, 50, 50, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.desktop-style .sub {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#playerW {
|
||||||
|
display: none!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.board_image {
|
||||||
|
border:0px;
|
||||||
|
}
|
|
@ -0,0 +1,149 @@
|
||||||
|
/**
|
||||||
|
* festaduro.css
|
||||||
|
* For 55chan adapted from kusaba by sinuca
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
font-family:arial,helvetica,sans-serif;
|
||||||
|
background-image: url(img/cotas.gif);
|
||||||
|
background-repeat:repeat;
|
||||||
|
background-position: center top;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #054500;
|
||||||
|
font-family:arial,helvetica,sans-serif;
|
||||||
|
font-size: 24pt;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #054500;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*reply mode*/
|
||||||
|
div.banner {
|
||||||
|
background-color: #054500;
|
||||||
|
color: #FFF;
|
||||||
|
padding: 2px;
|
||||||
|
font-size: 10pt;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
form table tr th {
|
||||||
|
background-color: #9309C6;
|
||||||
|
color: #054500;
|
||||||
|
border: 1px solid #054500;
|
||||||
|
font-size: 10pt;
|
||||||
|
padding: 0px 5px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro {
|
||||||
|
color: #054500;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.name {
|
||||||
|
color: #800000;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo span.unimportant, p.fileinfo a {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply {
|
||||||
|
background: #D6F0E4;
|
||||||
|
border-width: medium 1px 1px medium;
|
||||||
|
border-style: none solid solid none;
|
||||||
|
border-color: #E5D959 #E5D959;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.op div.body {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.post-hover {
|
||||||
|
background-color: #F0E0D6;
|
||||||
|
border: 1px dotted #000!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a:hover {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.highlighted {
|
||||||
|
background: #F0E0D6;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email span.name {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email:hover span.name {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages {
|
||||||
|
background: transparent;
|
||||||
|
border: 2px;
|
||||||
|
border-style: groove;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-width: 1px medium medium;
|
||||||
|
border-style: solid none none;
|
||||||
|
border-color: #117743
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist {
|
||||||
|
padding: 0.4em;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0.2em 0.1em;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a:hover {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#playerW {
|
||||||
|
display: none!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.delete {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.unimportant {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.board_image {
|
||||||
|
border:0px;
|
||||||
|
}
|
|
@ -0,0 +1,156 @@
|
||||||
|
/**
|
||||||
|
* favela.css
|
||||||
|
* For 55chan adapted from kusaba by sinuca
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
font-family: sans-serif;
|
||||||
|
background: none repeat scroll 0 0 #EEFDFF;
|
||||||
|
color: #000;
|
||||||
|
margin: 0;
|
||||||
|
padding: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #003333;
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 24pt;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #000;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #345456;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #FF7800;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.banner {
|
||||||
|
background-color: #00E19A;
|
||||||
|
color: #FFF;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
form table tr th {
|
||||||
|
background: #FF7800;
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.name {
|
||||||
|
font-family: serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo span.unimportant, p.fileinfo a {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply {
|
||||||
|
background: #D6F0E4;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.post-hover {
|
||||||
|
border-width: 1px;
|
||||||
|
border-style: none solid solid none;
|
||||||
|
border-color: #B7C5D9;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color: #345456;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.highlighted {
|
||||||
|
background: #B5FFDD;
|
||||||
|
}
|
||||||
|
|
||||||
|
div[id^="thread_"].highlighted {
|
||||||
|
background: #B5FFDD;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email span.name {
|
||||||
|
color: #345456;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages {
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-top: 1px solid #CCC;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist {
|
||||||
|
font-size: 13px;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0.2em 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a:hover {
|
||||||
|
background-color: #FF7800;
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#playerW {
|
||||||
|
display: none!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*fixing an issue with the a:hover and its child post-hover thing*/
|
||||||
|
div.boardlist a:hover div.post-hover.reply.post {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* sidebar styles */
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: #000;
|
||||||
|
background: #D6F0E4;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.sidebar h2 {
|
||||||
|
font-family: Verdana, Tahoma, sans-serif;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.sidebar h3 {
|
||||||
|
margin: 0;
|
||||||
|
background: #D6F0E4;
|
||||||
|
font-size: 100%
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.fav_nav {
|
||||||
|
margin-top: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.fav_nav a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #555500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.board_image {
|
||||||
|
border:0px;
|
||||||
|
}
|
|
@ -0,0 +1,84 @@
|
||||||
|
body {
|
||||||
|
font-family: sans-serif;
|
||||||
|
background: none repeat scroll 0 0 #EEFDFF;
|
||||||
|
font-size: 12px;
|
||||||
|
margin: 6px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1.title {
|
||||||
|
font-family: Verdana, Tahoma, sans-serif;
|
||||||
|
font-size: 23px;
|
||||||
|
color: #333300;
|
||||||
|
margin-top: 1em;
|
||||||
|
background: none;
|
||||||
|
letter-spacing: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-family: Verdana, Tahoma, sans-serif;
|
||||||
|
color: #333300;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: medium;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.favelito {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.favelito {
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.news-content {
|
||||||
|
margin-left: 1em;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: #000;
|
||||||
|
background: #D6F0E4;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.sidebar h2 {
|
||||||
|
font-family: Verdana, Tahoma, sans-serif;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.sidebar h3 {
|
||||||
|
margin: 0;
|
||||||
|
background: #D6F0E4;
|
||||||
|
font-size: 100%
|
||||||
|
}
|
||||||
|
|
||||||
|
div.fav_irc h4 {
|
||||||
|
font-family: Verdana, Tahoma, sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 10px;
|
||||||
|
background: #D6F0E4;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.fav_irc h4 a {
|
||||||
|
color: #FF7800;
|
||||||
|
text-decoration: none;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.fav_nav {
|
||||||
|
margin-top: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.fav_nav a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #555500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 53 KiB |
Binary file not shown.
After Width: | Height: | Size: 225 KiB |
Binary file not shown.
After Width: | Height: | Size: 118 KiB |
Binary file not shown.
After Width: | Height: | Size: 179 KiB |
|
@ -0,0 +1,146 @@
|
||||||
|
/**
|
||||||
|
* nigrachan.css
|
||||||
|
* For 55ch adapted from kusaba by sinuca
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #000000;
|
||||||
|
color: #909090;
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 24pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #A0A0A0;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.banner {
|
||||||
|
background-color: #000000;
|
||||||
|
color: #909090;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
form table tr th {
|
||||||
|
background: #202020;
|
||||||
|
color: #FFF;
|
||||||
|
padding: 2px 5px;
|
||||||
|
border: 1px solid #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"], input[type="password"], textarea, input[type="submit"], input[type="file"] {
|
||||||
|
background-color: #101010;
|
||||||
|
color: #FFF;
|
||||||
|
border: 1px solid #202020;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.name {
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #505050;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo span.unimportant, p.fileinfo a {
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply {
|
||||||
|
background: #202020;
|
||||||
|
border: none;
|
||||||
|
color: #A0A0A0;
|
||||||
|
border: 1px solid #101010;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.post-hover {
|
||||||
|
border-width: 1px;
|
||||||
|
border-style: none solid solid none;
|
||||||
|
border-color: #101010;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a:hover {
|
||||||
|
color: #A0A0A0;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.highlighted {
|
||||||
|
background: #111111;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email span.name {
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email:hover span.name {
|
||||||
|
color: #A0A0A0;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.subject {
|
||||||
|
color: #606060;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages {
|
||||||
|
background: transparent;
|
||||||
|
border: 2px groove #303030;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages a.selected {
|
||||||
|
color: #A0A0A0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-top: 2px groove #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist {
|
||||||
|
font-size: 10pt;
|
||||||
|
color: #FFF;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#playerW {
|
||||||
|
display: none!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desktop-style div.boardlist:nth-child(1):hover, .desktop-style div.boardlist.cb-menu:nth-child(1) {
|
||||||
|
background-color: rgba(50, 50, 50, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.desktop-style .sub {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.board_image {
|
||||||
|
border:0px;
|
||||||
|
}
|
|
@ -0,0 +1,146 @@
|
||||||
|
/**
|
||||||
|
* novo_jungle.css
|
||||||
|
* For 55chan adapted from kusaba by sinuca
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
font-family: arial,helvetica,sans-serif;
|
||||||
|
background: url(img/jungle_bg1.png);
|
||||||
|
background-repeat:repeat-x;
|
||||||
|
background-position: center top;
|
||||||
|
color: #000;
|
||||||
|
font-size: 10pt;
|
||||||
|
margin: 0;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-image: url(img/jungle_bg.png);
|
||||||
|
background-position: center top;
|
||||||
|
background-repeat:repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #054500;
|
||||||
|
font-family: Georgia;
|
||||||
|
font-size: 24pt;
|
||||||
|
font-weight: normal;
|
||||||
|
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
header div.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #000;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.banner {
|
||||||
|
background-color: #054500;
|
||||||
|
color: #FFF;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 10pt;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
form table tr th {
|
||||||
|
background: #65AB6B;
|
||||||
|
color: #054500;
|
||||||
|
border: 1px solid #054500;
|
||||||
|
font-size: 10pt;
|
||||||
|
padding: 0px 5px;
|
||||||
|
line-height: 20px;
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
|
||||||
|
form[name="postcontrols"] {
|
||||||
|
width: 95%;
|
||||||
|
margin: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro span.name {
|
||||||
|
color: #800000;
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.fileinfo span.unimportant, p.fileinfo a {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply {
|
||||||
|
border-width: medium 1px 1px medium;
|
||||||
|
border-style: none solid solid none;
|
||||||
|
border-color: #E5D959 #E5D959;
|
||||||
|
border: none;
|
||||||
|
padding: 2px;
|
||||||
|
border-radius: 5px;
|
||||||
|
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
|
||||||
|
background-image: url('img/jungle_td.png');
|
||||||
|
color: #054500;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.post-hover {
|
||||||
|
border-width: 1px;
|
||||||
|
border-style: none solid solid none;
|
||||||
|
border-color: #B7C5D9;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply div.body a:hover {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.post.reply.highlighted {
|
||||||
|
background-image: url('img/jungle_td_dark.png');;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email span.name {
|
||||||
|
color: #0000EE;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.intro a.email:hover span.name {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.pages {
|
||||||
|
background: transparent;
|
||||||
|
border: 2px;
|
||||||
|
border-style: groove;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist {
|
||||||
|
color: rgb(44, 89, 34);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0.2em 0.1em;
|
||||||
|
color: rgb(44, 89, 34);;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.boardlist a:hover {
|
||||||
|
color: #00990B;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#playerW {
|
||||||
|
display: none!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.board_image {
|
||||||
|
border:0px;
|
||||||
|
}
|
|
@ -0,0 +1,274 @@
|
||||||
|
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
|
||||||
|
.tooltipster-default {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 2px solid #000;
|
||||||
|
background: #4c4c4c;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Use this next selector to style things like font-size and line-height: */
|
||||||
|
.tooltipster-default .tooltipster-content {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
padding: 8px 10px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
|
||||||
|
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
|
||||||
|
/* border-color: ... !important; */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* If you're using the icon option, use this next selector to style them */
|
||||||
|
.tooltipster-icon {
|
||||||
|
cursor: help;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* This is the base styling required to make all Tooltipsters work */
|
||||||
|
.tooltipster-base {
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0;
|
||||||
|
line-height: 0;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
z-index: 9999999;
|
||||||
|
pointer-events: none;
|
||||||
|
width: auto;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.tooltipster-base .tooltipster-content {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
|
||||||
|
.tooltipster-arrow {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow span, .tooltipster-arrow-border {
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
|
||||||
|
border-left: 8px solid transparent !important;
|
||||||
|
border-right: 8px solid transparent !important;
|
||||||
|
border-top: 8px solid;
|
||||||
|
bottom: -7px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
|
||||||
|
border-left: 9px solid transparent !important;
|
||||||
|
border-right: 9px solid transparent !important;
|
||||||
|
border-top: 9px solid;
|
||||||
|
bottom: -7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
|
||||||
|
border-left: 8px solid transparent !important;
|
||||||
|
border-right: 8px solid transparent !important;
|
||||||
|
border-bottom: 8px solid;
|
||||||
|
top: -7px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
|
||||||
|
border-left: 9px solid transparent !important;
|
||||||
|
border-right: 9px solid transparent !important;
|
||||||
|
border-bottom: 9px solid;
|
||||||
|
top: -7px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
|
||||||
|
left: 6px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
|
||||||
|
left: 5px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
|
||||||
|
right: 6px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
|
||||||
|
right: 5px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
|
||||||
|
border-top: 8px solid transparent !important;
|
||||||
|
border-bottom: 8px solid transparent !important;
|
||||||
|
border-left: 8px solid;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -7px;
|
||||||
|
right: -7px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-left .tooltipster-arrow-border {
|
||||||
|
border-top: 9px solid transparent !important;
|
||||||
|
border-bottom: 9px solid transparent !important;
|
||||||
|
border-left: 9px solid;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
|
||||||
|
border-top: 8px solid transparent !important;
|
||||||
|
border-bottom: 8px solid transparent !important;
|
||||||
|
border-right: 8px solid;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -7px;
|
||||||
|
left: -7px;
|
||||||
|
}
|
||||||
|
.tooltipster-arrow-right .tooltipster-arrow-border {
|
||||||
|
border-top: 9px solid transparent !important;
|
||||||
|
border-bottom: 9px solid transparent !important;
|
||||||
|
border-right: 9px solid;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
|
||||||
|
|
||||||
|
.tooltipster-fade {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition-property: opacity;
|
||||||
|
-moz-transition-property: opacity;
|
||||||
|
-o-transition-property: opacity;
|
||||||
|
-ms-transition-property: opacity;
|
||||||
|
transition-property: opacity;
|
||||||
|
}
|
||||||
|
.tooltipster-fade-show {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltipster-grow {
|
||||||
|
-webkit-transform: scale(0,0);
|
||||||
|
-moz-transform: scale(0,0);
|
||||||
|
-o-transform: scale(0,0);
|
||||||
|
-ms-transform: scale(0,0);
|
||||||
|
transform: scale(0,0);
|
||||||
|
-webkit-transition-property: -webkit-transform;
|
||||||
|
-moz-transition-property: -moz-transform;
|
||||||
|
-o-transition-property: -o-transform;
|
||||||
|
-ms-transition-property: -ms-transform;
|
||||||
|
transition-property: transform;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
.tooltipster-grow-show {
|
||||||
|
-webkit-transform: scale(1,1);
|
||||||
|
-moz-transform: scale(1,1);
|
||||||
|
-o-transform: scale(1,1);
|
||||||
|
-ms-transform: scale(1,1);
|
||||||
|
transform: scale(1,1);
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltipster-swing {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transform: rotateZ(4deg);
|
||||||
|
-moz-transform: rotateZ(4deg);
|
||||||
|
-o-transform: rotateZ(4deg);
|
||||||
|
-ms-transform: rotateZ(4deg);
|
||||||
|
transform: rotateZ(4deg);
|
||||||
|
-webkit-transition-property: -webkit-transform, opacity;
|
||||||
|
-moz-transition-property: -moz-transform;
|
||||||
|
-o-transition-property: -o-transform;
|
||||||
|
-ms-transition-property: -ms-transform;
|
||||||
|
transition-property: transform;
|
||||||
|
}
|
||||||
|
.tooltipster-swing-show {
|
||||||
|
opacity: 1;
|
||||||
|
-webkit-transform: rotateZ(0deg);
|
||||||
|
-moz-transform: rotateZ(0deg);
|
||||||
|
-o-transform: rotateZ(0deg);
|
||||||
|
-ms-transform: rotateZ(0deg);
|
||||||
|
transform: rotateZ(0deg);
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
|
||||||
|
-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
|
||||||
|
-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
|
||||||
|
-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
|
||||||
|
transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltipster-fall {
|
||||||
|
top: 0;
|
||||||
|
-webkit-transition-property: top;
|
||||||
|
-moz-transition-property: top;
|
||||||
|
-o-transition-property: top;
|
||||||
|
-ms-transition-property: top;
|
||||||
|
transition-property: top;
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
}
|
||||||
|
.tooltipster-fall-show {
|
||||||
|
}
|
||||||
|
.tooltipster-fall.tooltipster-dying {
|
||||||
|
-webkit-transition-property: all;
|
||||||
|
-moz-transition-property: all;
|
||||||
|
-o-transition-property: all;
|
||||||
|
-ms-transition-property: all;
|
||||||
|
transition-property: all;
|
||||||
|
top: 0px !important;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltipster-slide {
|
||||||
|
left: -40px;
|
||||||
|
-webkit-transition-property: left;
|
||||||
|
-moz-transition-property: left;
|
||||||
|
-o-transition-property: left;
|
||||||
|
-ms-transition-property: left;
|
||||||
|
transition-property: left;
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
|
||||||
|
}
|
||||||
|
.tooltipster-slide.tooltipster-slide-show {
|
||||||
|
}
|
||||||
|
.tooltipster-slide.tooltipster-dying {
|
||||||
|
-webkit-transition-property: all;
|
||||||
|
-moz-transition-property: all;
|
||||||
|
-o-transition-property: all;
|
||||||
|
-ms-transition-property: all;
|
||||||
|
transition-property: all;
|
||||||
|
left: 0px !important;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
|
||||||
|
.tooltipster-content-changing {
|
||||||
|
opacity: 0.5;
|
||||||
|
-webkit-transform: scale(1.1, 1.1);
|
||||||
|
-moz-transform: scale(1.1, 1.1);
|
||||||
|
-o-transform: scale(1.1, 1.1);
|
||||||
|
-ms-transform: scale(1.1, 1.1);
|
||||||
|
transform: scale(1.1, 1.1);
|
||||||
|
}
|
Loading…
Reference in New Issue