mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-20 12:00:17 -04:00
Added Pictures
This commit is contained in:
parent
363c38070c
commit
1b6b359bff
84
notes/static/notes/css/notes.css
Normal file
84
notes/static/notes/css/notes.css
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
.wrapper {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 100%;
|
||||||
|
font-family:'Open Sans', sans-serif;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
text-transform: uppercase;
|
||||||
|
position: relative;
|
||||||
|
top: 4px;
|
||||||
|
left: 0;
|
||||||
|
width: 75%;
|
||||||
|
height: 100px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 5px 0 5px;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #393939;
|
||||||
|
background-color: #3a9fbf;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button:hover {
|
||||||
|
background: #00008B;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button p {
|
||||||
|
text-align: center;
|
||||||
|
line-height: 100px;
|
||||||
|
font-size: 35px;
|
||||||
|
font-weight: 200;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: #FFF;
|
||||||
|
transition: all 1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button p:hover {
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown1 {
|
||||||
|
position: relative;
|
||||||
|
top: 0px;
|
||||||
|
left: 0;
|
||||||
|
width: 75%;
|
||||||
|
height: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 5px 0 5px;
|
||||||
|
border-radius: 0 0 5px 5px;
|
||||||
|
background: #393939;
|
||||||
|
transition: 0.5s;
|
||||||
|
cursor: pointer;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 15px 15px 0 15px;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content li {
|
||||||
|
margin: 0 0 5px 0;
|
||||||
|
padding: 0 0 5px 0;
|
||||||
|
width: 100%;
|
||||||
|
border-bottom: 1px solid #676768;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content li a {
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 0 5px 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 23px;
|
||||||
|
font-weight: 100;
|
||||||
|
letter-spacing: 5px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content li a:hover {
|
||||||
|
color: #cecccf;
|
||||||
|
}
|
14
notes/static/notes/js/meeting.js
Normal file
14
notes/static/notes/js/meeting.js
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
$( document ).ready(function() {
|
||||||
|
var SubheaderBlock = document.getElementsByClassName("SubheaderBlock");
|
||||||
|
var SubsubheaderBlock = document.getElementsByClassName("SubsubheaderBlock");
|
||||||
|
|
||||||
|
for (var i = 0; i < SubheaderBlock.length; i ++){
|
||||||
|
SubheaderBlock[i].className += "lead";
|
||||||
|
}
|
||||||
|
|
||||||
|
for (var i = 0; i < SubsubheaderBlock.length; i ++){
|
||||||
|
SubsubheaderBlock[i].className += "lead";
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
18
notes/static/notes/js/notes.js
Normal file
18
notes/static/notes/js/notes.js
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
function dropdown(button, id) {
|
||||||
|
|
||||||
|
var height = document.getElementsByClassName("meeting_" + id).length * 55;
|
||||||
|
|
||||||
|
var dropdown = document.getElementById('dropdown_' + id),
|
||||||
|
content = document.getElementById('content_' + id);
|
||||||
|
|
||||||
|
if (dropdown.style.height === height + "px") {
|
||||||
|
dropdown.style.height = "0";
|
||||||
|
content.style.opacity = "0";
|
||||||
|
} else {
|
||||||
|
dropdown.style.height = height + "px";
|
||||||
|
dropdown.style.transition = "height 0.5s";
|
||||||
|
content.style.transition = "opacity 0.5s";
|
||||||
|
content.style.opacity = "1";
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
BIN
pages/static/pages/css/img/favicon.png
Normal file
BIN
pages/static/pages/css/img/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
pages/static/pages/css/img/vinay.png
Normal file
BIN
pages/static/pages/css/img/vinay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
Loading…
Reference in New Issue
Block a user