mirror of
https://github.com/openvk/openvk
synced 2024-12-22 16:42:32 +03:00
Compare commits
2 commits
63f402d179
...
90b2b0acac
Author | SHA1 | Date | |
---|---|---|---|
|
90b2b0acac | ||
|
5660a370a8 |
2 changed files with 96 additions and 26 deletions
|
@ -62,32 +62,6 @@ p.wel {
|
||||||
padding-right: 16px;
|
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 {
|
p.big {
|
||||||
font-size:12px; text-align:center;
|
font-size:12px; text-align:center;
|
||||||
}
|
}
|
||||||
|
@ -122,4 +96,84 @@ text-decoration:none;
|
||||||
background-color: #B8C4CF;
|
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 */
|
/* OVK CONTENT TOUR CSS */
|
16
Web/static/js/tour.js
Normal file
16
Web/static/js/tour.js
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
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