Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 47 additions & 9 deletions CSS/StyleSheet.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,51 @@
/* Base structure */
/* custom css reset */
html{
scroll-behavior: smooth;
}

* , *::before, *::after{
margin: 0;
padding: 0;
box-sizing: inherit;
}

*{
font-size: inherit;
}

html, body {
html,
body{
width: 100%;
height: 100%;
box-sizing: border-box;

}

img,
picture,
video,
svg{
display: block;
max-width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}

input, button, textarea, select {
font: inherit;
}


/* Base structure */

/* Customise the Navigation Bar */
.navbar {
background-color:#050f1b;
}


.devsoc-nav-item {
color:white;
float: left;
Expand Down Expand Up @@ -45,25 +82,26 @@ i{
display: block;
margin-left: auto;
margin-right: auto;

}

header {
position: relative;
background-color: black;
height: 75vh;
min-height: 25rem;
width: 100%;
/* width: 100%; */
overflow: hidden;
}

header video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
/* min-width: 100%; */
/* min-height: 100%; */
/* width: auto; */
/* height: auto; */
z-index: 0;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
Expand All @@ -80,8 +118,8 @@ header .overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
/* height: 100%; */
/* width: 100%; */
background-color: black;
opacity: 0.4;
z-index: 1;
Expand Down
38 changes: 38 additions & 0 deletions Dnd/DndStyleSheet.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
/* custom css reset */
html{
scroll-behavior: smooth;
}

html,
body{
width: 100%;
height: 100%;
box-sizing: border-box;
}

img,
picture,
video,
svg{
display: block;
max-width: 100%;
}

* , *::before, *::after{
margin: 0;
padding: 0;
box-sizing: inherit;
}

*{
font-size: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}

input, button, textarea, select {
font: inherit;
}

.dnd-body {
background-color: black;
color: white;
Expand Down
12 changes: 9 additions & 3 deletions home.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- browser compatibility -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">


<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
Expand All @@ -21,6 +25,7 @@
</head>

<body>

<!-- Navigation Bar Start -->
<nav class="navbar navbar-expand-sm">
<!-- Brand -->
Expand Down Expand Up @@ -290,13 +295,14 @@ <h5 class = "text-center mt-2">Find us elsewhere:</h5>
</div>
</div>
</div>


<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="Javascript.js"></script>

</body>
</html>