Updated contact page; refactored navbar css

This commit is contained in:
Arun B
2018-11-24 12:23:08 +05:30
parent 4f8f06e455
commit 48b2d243c0
6 changed files with 133 additions and 364 deletions

View File

@@ -4,100 +4,11 @@
<title>ShanMukha Innovations - Developing a Swiss army knife of clinical diagnostics for serving 4 Billion people</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Roboto:400,300,200,100&subset=latin,cyrillic" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<!-- // [start style] -->
<style>
.nav {
height: 70px;
width: 100%;
background-color: #f1fdfd;
position: fixed;
top: 0;
left: 0;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #f00;
/*padding: 10px 10px 10px 10px;*/
}
.nav > .nav-btn {
display: none;
}
.nav > .nav-links {
display: inline;
float: right;
font-family: Roboto, helvetica, arial, sans-serif;
font-size: 24px;
}
.nav > .nav-links > a {
display: inline-block;
padding: 23px 20px 13px 10px;
text-decoration: none;
color: #000000;
}
.nav > .nav-links > a:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > #nav-check {
display: none;
}
@media (max-width:600px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > a {
display: block;
width: 100%;
}
.nav > #nav-check:not(:checked) + .nav-links {
height: 0px;
}
.nav > #nav-check:checked + .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
}
#section1 {
margin-top: 100px;
margin-left: 50px;
@@ -112,10 +23,19 @@
margin-bottom: 0px;
margin-top: 20px;
}
footer {
font-family: Roboto, sans-serif;
font-weight: 300;
text-align: center;
background-color: hsl(8, 70%, 54%);
color: white;
padding-bottom: 20px;
padding-top: 20px;
}
</style>
</head>
<body>
<body style="height: 100%; min-height: 100%">
<div class="nav">
<div class="nav-header">
<div class="nav-title">
@@ -138,9 +58,32 @@
</div>
</div>
<div id="section1">
<div id="container">
<h2> Contact Us </h2>
</div>
<br />
<p />
<br />
<p />
<img src="images/sid.jpg" width="400px" height="200px" />
<h3> Correspondence Address </h3>
ShanMukha Innovations Pvt. Ltd. <br />
First floor, Entreprenuership Centre, <br />
Society for Innovation & Developement (SID), <br />
Indian Institute of Science (IISc), <br />
Bangalore - 560012 <br />
<br />
<p />
<br />
<p />
For more information, send an email to info(at)sminnovations.in
<p />
<br />
<p />
<br />
</div>
</div>
<footer>
<div class="container">
<a href="https://www.linkedin.com/company/sminnovations/">

94
public/css/navbar.css Normal file
View File

@@ -0,0 +1,94 @@
/**
Responsive style sheet for the top navigation bar
**/
.nav {
height: 70px;
width: 100%;
background-color: #f1fdfd;
position: fixed;
top: 0;
left: 0;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #f00;
}
.nav > .nav-btn {
display: none;
}
.nav > .nav-links {
display: inline;
float: right;
font-family: Roboto, helvetica, arial, sans-serif;
font-size: 24px;
}
.nav > .nav-links > a {
display: inline-block;
padding: 23px 20px 13px 10px;
text-decoration: none;
color: #000000;
}
.nav > .nav-links > a:hover {
background-color: rgba(17, 171, 176, 0.3);
}
.nav > #nav-check {
display: none;
}
@media (max-width:600px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > a {
display: block;
width: 100%;
}
.nav > #nav-check:not(:checked) + .nav-links {
height: 0px;
}
.nav > #nav-check:checked + .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
}

BIN
public/images/sid.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 KiB

View File

@@ -4,6 +4,7 @@
<title>ShanMukha Innovations - Developing a Swiss army knife of clinical diagnostics for serving 4 Billion people</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Roboto:400,300,200,100&subset=latin,cyrillic" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<!-- // [start style] -->
<style>
body {
@@ -21,95 +22,6 @@
top: 0;
left: 0;
}
.nav {
height: 70px;
width: 100%;
background-color: #f1fdfd;
position: fixed;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #f00;
/*padding: 10px 10px 10px 10px;*/
}
.nav > .nav-btn {
display: none;
}
.nav > .nav-links {
display: inline;
float: right;
font-family: Roboto, helvetica, arial, sans-serif;
font-size: 24px;
}
.nav > .nav-links > a {
display: inline-block;
padding: 23px 20px 13px 10px;
text-decoration: none;
color: #000000;
}
.nav > .nav-links > a:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > #nav-check {
display: none;
}
@media (max-width:600px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > a {
display: block;
width: 100%;
}
.nav > #nav-check:not(:checked) + .nav-links {
height: 0px;
}
.nav > #nav-check:checked + .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
}
#headline {
margin-top: 0px;

View File

@@ -4,100 +4,10 @@
<title>ShanMukha Innovations - Developing a Swiss army knife of clinical diagnostics for serving 4 Billion people</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Roboto:400,300,200,100&subset=latin,cyrillic" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<!-- // [start style] -->
<style>
.nav {
height: 70px;
width: 100%;
background-color: #f1fdfd;
position: fixed;
top: 0;
left: 0;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #f00;
/*padding: 10px 10px 10px 10px;*/
}
.nav > .nav-btn {
display: none;
}
.nav > .nav-links {
display: inline;
float: right;
font-family: Roboto, helvetica, arial, sans-serif;
font-size: 24px;
}
.nav > .nav-links > a {
display: inline-block;
padding: 23px 20px 13px 10px;
text-decoration: none;
color: #000000;
}
.nav > .nav-links > a:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > #nav-check {
display: none;
}
@media (max-width:600px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > a {
display: block;
width: 100%;
}
.nav > #nav-check:not(:checked) + .nav-links {
height: 0px;
}
.nav > #nav-check:checked + .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
}
#section1 {
margin-top: 100px;
margin-left: 50px;

View File

@@ -4,100 +4,10 @@
<title>ShanMukha Innovations - Developing a Swiss army knife of clinical diagnostics for serving 4 Billion people</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Roboto:400,300,200,100&subset=latin,cyrillic" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<!-- // [start style] -->
<style>
.nav {
height: 70px;
width: 100%;
background-color: #f1fdfd;
position: fixed;
top: 0;
left: 0;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #f00;
/*padding: 10px 10px 10px 10px;*/
}
.nav > .nav-btn {
display: none;
}
.nav > .nav-links {
display: inline;
float: right;
font-family: Roboto, helvetica, arial, sans-serif;
font-size: 24px;
}
.nav > .nav-links > a {
display: inline-block;
padding: 23px 20px 13px 10px;
text-decoration: none;
color: #000000;
}
.nav > .nav-links > a:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > #nav-check {
display: none;
}
@media (max-width:600px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > a {
display: block;
width: 100%;
}
.nav > #nav-check:not(:checked) + .nav-links {
height: 0px;
}
.nav > #nav-check:checked + .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
}
#section1 {
margin-top: 100px;
margin-left: 50px;