Файл: style/touch/demo.css
Строк: 293
div.main_space {
background:#f5f5f5;
}
.tpanel {
display:
table;
border: 0;
margin-left: 3px;
margin-bottom: -2px;
color: #fff;}
.tmenu {
float: left;
display: inline;}
.tmenu a
{
margin-left: 5px;
margin-top: 1em;
display: block;
min-width: 50px;
padding: 3px 8px 3px 8px;
text-decoration: none;
text-align: center;
color: #fff;
background: #5881B0;
border-radius: 6px;
-moz-border-radius: 4 4 0px 0px;}
.tmenu a:hover
{background: #6A93C1;}
/**
* Tooltip Styles
*/
/* Base styles
for the element that has a tooltip */
[data-tooltip],
.tooltip {
position: relative;
cursor: pointer;
}
/* Base styles for the entire
tooltip
*/
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after
{
position: absolute;
visibility: hidden;
-ms-filter:
"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter:
progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition:
opacity 0.2s ease-in-out,
visibility
0.2s ease-in-out,
-webkit-transform 0.2s cubic-bezier(0.71, 1.7,
0.77, 1.24);
-moz-transition:
opacity 0.2s ease-in-out,
visibility 0.2s ease-in-out,
-moz-transform 0.2s
cubic-bezier(0.71, 1.7, 0.77, 1.24);
transition:
opacity 0.2s ease-in-out,
visibility 0.2s ease-in-out,
transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
-webkit-transform:
translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
pointer-events: none;
}
/* Show
the entire tooltip on hover and focus
*/
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after
{
visibility: visible;
-ms-filter:
"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter:
progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
/*
Base styles for the tooltip's directional arrow
*/
.tooltip:before,
[data-tooltip]:before {
z-index: 1001;
border: 6px
solid transparent;
background: transparent;
content:
"";
}
/* Base styles for the tooltip's content area
*/
.tooltip:after,
[data-tooltip]:after {
z-index: 1000;
padding: 8px;
width: 160px;
background-color: #000;
background-color: hsla(0, 0%,
20%, 0.9);
color: #fff;
content: attr(data-tooltip);
font-size:
14px;
line-height: 1.2;
}
/* Directions */
/* Top (default)
*/
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after
{
bottom: 100%;
left:
50%;
}
[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
margin-left: -6px;
margin-bottom: -12px;
border-top-color: #000;
border-top-color: hsla(0, 0%, 20%, 0.9);
}
/* Horizontally align
top/bottom tooltips
*/
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
margin-left:
-80px;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after
{
-webkit-transform: translateY(-12px);
-moz-transform:
translateY(-12px);
transform: translateY(-12px);
}
/* Left
*/
.tooltip-left:before,
.tooltip-left:after {
right: 100%;
bottom:
50%;
left: auto;
}
.tooltip-left:before {
margin-left: 0;
margin-right: -12px;
margin-bottom: 0;
border-top-color: transparent;
border-left-color: #000;
border-left-color: hsla(0, 0%, 20%,
0.9);
}
.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after
{
-webkit-transform: translateX(-12px);
-moz-transform:
translateX(-12px);
transform: translateX(-12px);
}
/* Bottom
*/
.tooltip-bottom:before,
.tooltip-bottom:after {
top: 100%;
bottom:
auto;
left: 50%;
}
.tooltip-bottom:before {
margin-top: -12px;
margin-bottom: 0;
border-top-color: transparent;
border-bottom-color:
#000;
border-bottom-color: hsla(0, 0%, 20%,
0.9);
}
.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after
{
-webkit-transform: translateY(12px);
-moz-transform:
translateY(12px);
transform: translateY(12px);
}
/* Right
*/
.tooltip-right:before,
.tooltip-right:after {
bottom: 50%;
left:
100%;
}
.tooltip-right:before {
margin-bottom: 0;
margin-left: -12px;
border-top-color: transparent;
border-right-color: #000;
border-right-color: hsla(0, 0%, 20%,
0.9);
}
.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after
{
-webkit-transform: translateX(12px);
-moz-transform:
translateX(12px);
transform: translateX(12px);
}
/* Move
directional arrows down a bit for left/right tooltips
*/
.tooltip-left:before,
.tooltip-right:before {
top: 3px;
}
/*
Vertically center tooltip content for left/right tooltips
*/
.tooltip-left:after,
.tooltip-right:after {
margin-left: 0;
margin-bottom: -16px;
}
@-webkit-keyframes pulsate {
50% { color:
#fff; text-shadow: 0 -1px rgba(0,0,0,.3), 0 0 5px #ffd, 0 0 8px #fff;
}
}
@keyframes pulsate {
50% { color: #fff; text-shadow: 0 -1px
rgba(0,0,0,.3), 0 0 5px #ffd, 0 0 8px #fff; }
}
#blink7 {
color:
rgb(245,245,245);
text-shadow: 0 -1px rgba(0,0,0,.1);
-webkit-animation: pulsate 1.2s linear infinite;
animation: pulsate
1.2s linear infinite;
}
.ellipsis {
white-space: nowrap;
overflow:
hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
font-family: "Trebuchet MS", Helvetica, Arial,
sans-serif;
}
.user__status-messages {
margin-top: 7px;
padding:
9px;
font-size: 87.5%;
line-height: 114.2857%;
}
.user__statuss {
background: #ddebf7;
color: #323232;
font-size: 81.25%;
line-height: 123.076%;
padding: 9px 36px 9px 9px;
position:
relative;
word-wrap: break-word;
border-radius: 3px;
border:
1px #C0C0C0 solid;
}
.user__status-messages:after {
left:
7px;
}
.user__statuss:after {
content: '';
position: absolute;
display: block;
height: 0;
width: 0;
top: 100%;
left:
32px;
border: 8px solid transparent;
border-top-color:
#C0C0C0;
}
.user__status-message {
margin-top: 7px;
padding: 9px;
font-size: 87.5%;
line-height: 114.2857%;
}
.user__status {
background: #ddebf7;
color: #323232;
font-size: 81.25%;
line-height: 123.076%;
padding: 9px 36px 9px 9px;
position:
relative;
word-wrap: break-word;
border-radius:
3px;
}
.user__status-message:after {
left: 7px;
}
.user__status:after
{
content: '';
position: absolute;
display: block;
height:
0;
width: 0;
bottom: 100%;
left: 32px;
border: 8px solid
transparent;
border-bottom-color: #ddebf7;
}
.title {
padding:0
25px 0 35px;
position:relative;
background:#fff;
color:#323232;
font-size:87.5%;
line-height:285.714%;
z-index:1;
overflow:hidden;
-webkit-box-shadow:0px 3px 5px
rgba(93,109,157,0.3);
-moz-box-shadow:0px 3px 5px
rgba(93,109,157,0.3);
box-shadow:0px 3px 5px
rgba(93,109,157,0.3);
}
.title:after {
content: '';
position:
absolute;
top: 0;
bottom: 0;
right: 0;
width: 17px;
background: -webkit-gradient(linear,0% 0%,0%
100%,from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
background:
-webkit-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,1));
background:
-moz-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,1));
background:
-o-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,1));
background:
-ms-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,1));
background:
linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,1));
}
.title_item
{
display: inline-block;
margin-right: -20px;
margin-left:
-20px;
white-space: nowrap;
}
.over {
overflow: hidden;
white-space: nowrap
}
.cit {
border: 1px #5bc0de solid;
padding:
.25em .4em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #5bc0de;
vertical-align: baseline;
border-radius:
.25rem;
}
.dialogs_new_msg {
background-color: #edf1f5;
border-color: #DAE1E8;
padding: 3px;
}
.dialogs {
border-color:
#DAE1E8;
padding: 3px;
}
.inner {
border-top: 1px solid #31466f;
border-bottom: 1px solid #041537;
background: #333;
position:
relative;
color: rgba(255,255,255,0.5);
padding: 0
}
.comm {
background: #FFF;
box-sizing: border-box;
margin-left: -5px;
margin-right: -5px;
margin-top: -1px;
margin-bottom: 0;
border-top: 1px solid #ddd;
border-radius: 3px;
}
.hr {
margin:
7px 0 7px 0;
border-bottom: 1px #e5e5e5 solid;
}
.r {
border-top:
1px solid #e5e5e5;
}
.photos {
border: 1px solid #D8D8D8;
position: relative;
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
height: 100px;
margin: 3px 5px 3px
3px;
width: 100px;
position: relative;
}
.photos_blok {
background: rgba(17,13,57,.6);
top: 75px;
color: #F7F7F7;
height: 25px;
width: 100px;
position: absolute;
}
/*######################################7.2.1#############################*/
.photos1
{
border: 1px solid #D8D8D8;
position: relative;
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
height: 50px;
margin: 3px 5px 3px 3px;
width: 50px;
position:
relative;
}
.photos_blok1 {
background: rgba(17,13,57,.6);
top:
25px;
color: #F7F7F7;
height: 25px;
width: 50px;
font-size: 12px;
position: absolute;
}
/*###################################################################*/
#hides
{
opacity: 0.5;
}
#hide a img {
opacity: 0.5;
}
#hide a:hover img
{
opacity: 1;
}
.null {
width: 100%;
}
.icon48
{
font-size:
normal;
width: 48px;
height: 48px;
vertical-align:
top;
}
.icon14 {
text-align: center;
padding: 5px;
}
.status {
border-radius: 3px;
padding: 4px;
}
.mail {
background-color:
#edf1f5;
overflow: hidden;
}
.mails {
background-color: #fff;
overflow: hidden;
}
.mail_new {
clear: right;
float: right;
background-color: #e0edff;
line-height: 1.28;
text-align: left;
padding: 5px;
border: 1px solid #dcdee3;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
box-shadow: 0 2px 0 2px #dce0e6;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
color: #373e4d;
min-height:
22px;
min-width: 14px;
text-shadow: rgba(255, 255, 255, .5) 0 1px
0;
margin: 2px;
}
.mails_new {
clear: left;
float: left;
background-color: #e0edff;
line-height: 1.28;
text-align: left;
padding: 5px;
border: 1px solid #dcdee3;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
box-shadow: 0 1px 0 #dce0e6;
box-shadow:
0 0 5px rgba(0,0,0,0.5);
color: #373e4d;
min-height: 22px;
min-width: 14px;
text-shadow: rgba(255, 255, 255, .5) 0 1px 0;
margin: 2px;
}
.mail:first-child:before {
left: auto;
right:
-8px;
margin-left: 0;
margin-right: 2px;
border-right: 0;
border-left: 6px solid #3097d1;
}
.m {
padding-bottom: 5px;
padding-top: 5px;
margin-top: 5px;
margin-bottom: 5px;
clear:
both;
overflow: hidden;
}
#hides {
opacity: 0.5;
}