mirror of
https://github.com/openvk/openvk
synced 2024-12-23 00:51:03 +03:00
Compare commits
No commits in common. "90b2b0acac805be558bfae75e39d30dc4fd5c4ab" and "63f402d179d9e98fd5b4509ffa0d0499cbbebaac" have entirely different histories.
90b2b0acac
...
63f402d179
2 changed files with 26 additions and 96 deletions
|
@ -62,6 +62,32 @@ p.wel {
|
|||
padding-right: 16px;
|
||||
}
|
||||
|
||||
|
||||
.rightNav {
|
||||
border:0px; width:140px; padding-left: 6px; float:left;
|
||||
}
|
||||
.rightNav h1 {
|
||||
border:0px; background: #EAEAEA; font-weight:bold; font-size:11px; padding: 4px 5px;
|
||||
}
|
||||
.rightLinks {
|
||||
margin-bottom:10px;
|
||||
}
|
||||
.rightLinks div {
|
||||
padding:4px 6px 4px 5px; margin:1px;
|
||||
}
|
||||
.rightLinks .active {
|
||||
background: #fff;
|
||||
}
|
||||
.rightLinks .active a {
|
||||
cursor: default; color: #000; font-weight:bold;
|
||||
}
|
||||
.rightLinks .active a:hover {
|
||||
cursor: default; text-decoration: none;
|
||||
}
|
||||
|
||||
.rightLinks img {
|
||||
vertical-align: bottom; margin-right:5px;
|
||||
}
|
||||
p.big {
|
||||
font-size:12px; text-align:center;
|
||||
}
|
||||
|
@ -96,84 +122,4 @@ text-decoration:none;
|
|||
background-color: #B8C4CF;
|
||||
}
|
||||
|
||||
* {box-sizing: border-box}
|
||||
|
||||
.rightNav {
|
||||
border:0px; width:140px; padding-left: 6px; float:right;
|
||||
}
|
||||
.rightNav h1 {
|
||||
border:0px; background: #EAEAEA; font-weight:bold; font-size:11px; padding: 4px 5px;
|
||||
}
|
||||
.rightLinks {
|
||||
margin-bottom:10px;
|
||||
}
|
||||
.rightLinks div {
|
||||
padding:4px 6px 4px 5px; margin:1px;
|
||||
}
|
||||
.rightLinks .active {
|
||||
background: #fff;
|
||||
}
|
||||
.rightLinks .active a {
|
||||
cursor: default; color: #000; font-weight:bold;
|
||||
}
|
||||
.rightLinks .active a:hover {
|
||||
cursor: default; text-decoration: none;
|
||||
}
|
||||
|
||||
.rightLinks img {
|
||||
vertical-align: bottom; margin-right:5px;
|
||||
}
|
||||
|
||||
/* Style the tab */
|
||||
.tab {
|
||||
float: right;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.tab:hover {
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* Style the buttons inside the tab */
|
||||
.tab button {
|
||||
display: block;
|
||||
background-color: inherit;
|
||||
width: 138px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
margin-bottom: 5px;
|
||||
outline: none;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
background: none;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
/* Create an active/current "tab button" class */
|
||||
.tab button.active {
|
||||
background-color: #fff;
|
||||
cursor: default; color: #000; font-weight:bold;
|
||||
}
|
||||
|
||||
.tab button.hover{
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* Style the tab content */
|
||||
.tabcontent {
|
||||
float: left;
|
||||
padding: 0px 12px;
|
||||
background: #fff;
|
||||
width: 77%;
|
||||
}
|
||||
.tabcontent img{
|
||||
margin:auto;
|
||||
}
|
||||
.tabicon{
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
display: inline;
|
||||
margin-right: 1px;
|
||||
}
|
||||
|
||||
/* OVK CONTENT TOUR CSS */
|
|
@ -1,16 +0,0 @@
|
|||
function myslivetsTour(evt, step) {
|
||||
var i, tabcontent, tablinks;
|
||||
tabcontent = document.getElementsByClassName("tabcontent");
|
||||
for (i = 0; i < tabcontent.length; i++) {
|
||||
tabcontent[i].style.display = "none";
|
||||
}
|
||||
tablinks = document.getElementsByClassName("tablinks");
|
||||
for (i = 0; i < tablinks.length; i++) {
|
||||
tablinks[i].className = tablinks[i].className.replace(" active", "");
|
||||
}
|
||||
document.getElementById(step).style.display = "block";
|
||||
evt.currentTarget.className += " active";
|
||||
}
|
||||
|
||||
// Get the element with id="defaultOpen" and click on it
|
||||
document.getElementById("defaultOpen").click();
|
Loading…
Reference in a new issue