-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
228 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css'); | ||
@import url('http://fonts.googleapis.com/css?family=Quicksand'); | ||
|
||
#navbar{ | ||
background-color:#0D304E; | ||
left:0;right:0; | ||
position:relative; | ||
font-family:'Quicksand', sans-serif; | ||
color:#fff; | ||
-webkit-box-shadow: inset 0px -4px 13px 0px rgba rgb(13,48,78); | ||
-moz-box-shadow: inset 0px -4px 13px 0px rgb(13,48,78); | ||
box-shadow: inset 0px -4px 13px 0px rgb(13,48,78); | ||
z-index:999; | ||
} | ||
#navbar a{ | ||
color:#fff; | ||
text-decoration:none; | ||
font-family:'Quicksand', sans-serif; | ||
font-size:20px; | ||
} | ||
#parent_link { | ||
text-align:center; | ||
float:left; | ||
margin-left:280px; | ||
font-weight: normal; | ||
font-size:18px !important; | ||
font-family:'Quicksand', sans-serif !important; | ||
} | ||
#navbar ul{ | ||
list-style-type:none; | ||
float:left; | ||
padding:0; | ||
margin:0; | ||
margin-left:5px; | ||
} | ||
#navbar ul li{ | ||
display:inline-block; | ||
padding-top:5px; | ||
font-size:16px; | ||
padding-left:10px; | ||
padding-right:8px; | ||
} | ||
#navbar li ul{ | ||
display:none; | ||
background-color:#ED8C1C; | ||
border:#111 1px solid; | ||
position:absolute; | ||
padding-right:25px; | ||
z-index:9991; | ||
} | ||
#navbar li:hover ul{ | ||
display:block; | ||
} | ||
#navbar li ul li{ | ||
display:block; | ||
margin-top:-6px; | ||
padding:7px; | ||
font-size:16px; | ||
} | ||
#navwrap{ | ||
margin-top:16px; | ||
} | ||
.element_avatar.tiny img{ | ||
width:24px; | ||
height:24px; | ||
} | ||
#enjin-bar .right{ | ||
position:fixed; | ||
font-size: 24px; | ||
font-family: 'Quicksand', sans-serif; | ||
top: 30px; | ||
z-index:99999; | ||
} | ||
#logo_main { | ||
margin-top: 3px; | ||
float:left; | ||
margin-left:5px; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
var link = document.createElement('link'); | ||
link.type = 'image/x-icon'; | ||
link.rel = 'shortcut icon'; | ||
link.href = 'https://res.cloudinary.com/dadfowug4/image/upload/v1479304973/favicon_rkdd0w.ico'; | ||
document.getElementsByTagName('head')[0].appendChild(link); | ||
|
||
document.getElementsByTagName('table')[0].style.display = "none"; | ||
var nav = document.getElementsByTagName('table')[0]; | ||
var div1 = document.createElement("table"); | ||
div1.setAttribute("width", "100%"); | ||
div1.setAttribute("height", "15%"); | ||
div1.setAttribute("border", "0"); | ||
div1.setAttribute("id", "navbar"); | ||
div1.setAttribute("align", "center"); | ||
div1.setAttribute("cellpading", "0"); | ||
div1.setAttribute("cellspacing", "0"); | ||
div1.setAttribute("background", "https://vit.ac.in/images/banner_bg3.png"); | ||
var div2 = document.createElement("tbody"); | ||
var div4 = document.createElement("tr"); | ||
var div3 = document.createElement("td"); | ||
div3.setAttribute("width", "25%"); | ||
div3.setAttribute("align", "left"); | ||
|
||
var t4 = document.createElement("img"); | ||
t4.setAttribute("src", "https://res.cloudinary.com/dadfowug4/image/upload/v1479304837/logo_oqljl1.png"); | ||
t4.setAttribute("width", "190"); | ||
t4.setAttribute("height", "70"); | ||
|
||
var td = document.createElement("td"); | ||
td.setAttribute("align","center"); | ||
var br = document.createElement("br"); | ||
|
||
var font = document.createElement("font"); | ||
font.setAttribute("size","5"); | ||
font.setAttribute("color","#FFFFFF"); | ||
font.setAttribute("id","parent_link"); | ||
|
||
var b = document.createElement("p"); | ||
var t1 = document.createTextNode("Student Login | VIT University"); | ||
b.appendChild(t1); | ||
font.appendChild(b); | ||
|
||
td.appendChild(br); | ||
td.appendChild(font); | ||
div3.appendChild(t4); | ||
div4.appendChild(div3); | ||
div4.appendChild(td); | ||
div2.appendChild(div4); | ||
div1.appendChild(div2); | ||
|
||
nav.parentElement.insertBefore(div1, nav); |
Oops, something went wrong.