diff options
Diffstat (limited to 'research_group_template/bhavika/blog')
-rw-r--r-- | research_group_template/bhavika/blog/blog1.html | 33 | ||||
-rw-r--r-- | research_group_template/bhavika/blog/style.css | 65 |
2 files changed, 98 insertions, 0 deletions
diff --git a/research_group_template/bhavika/blog/blog1.html b/research_group_template/bhavika/blog/blog1.html new file mode 100644 index 0000000..a2a6f49 --- /dev/null +++ b/research_group_template/bhavika/blog/blog1.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> + <title>Blog Page</title> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> + +</head> +<body> +<div class="container"> + <div class="row"> + <div class="col-sm-8 col-sm-offset-2"> + <article class="sabi-events-item"> + <figure> + <img class="img-responsive" src="/home/bhavika/Desktop/acadmix_distribution/research_group_template/bhavika/event/images/event_2.jpg" style="margin-top:15px"> + <figcaption><h3>11th batch MSc Students Reunion</h3></figcaption> + <img src="/home/bhavika/Desktop/acadmix_distribution/research_group_template/bhavika/event/images/location_pin.jpg" style="width: 5%;float:left;" > + <h5>5005 Heavenly Village Way #2b, Lake Tahoe</h5> + <br> + <img src="/home/bhavika/Desktop/acadmix_distribution/research_group_template/bhavika/event/images/calendar2.jpg" style="width: 5%;float: left;"> + <h5>7th August 2017 </h5> + </figure><br> + <p style="align-content: center;"> + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + </p> + </article> + </div> +</div> +</body> +</html>
\ No newline at end of file diff --git a/research_group_template/bhavika/blog/style.css b/research_group_template/bhavika/blog/style.css new file mode 100644 index 0000000..3771f93 --- /dev/null +++ b/research_group_template/bhavika/blog/style.css @@ -0,0 +1,65 @@ +.center{ + display: block; + margin-left: auto; + margin-right: auto; + width: 50%; +} +.row { + display: flex; + /*flex-wrap: wrap;*/ + padding: 10px 20px; +} + + +/* Create two equal columns that sits next to each other */ +.column { + /*float: left;*/ + flex: 25%; + max-width: 25%; + padding: 0 20px; + align-items: right; +} +.row::after { + content: ""; + clear: both; + display: table; + +.column img { + margin-top: 8px; + /* vertical-align: middle;*/ + width: 100%; + +} +.sabi-events-item{ + margin-top: 5px; +} +.img-responsive{ + margin-top: 10px; + display: block; + max-width:100%; + height: auto; +} +.sabi-events-item img +{ + margin-top: 10px; +} +article +{ + display: block; +} + +/* Responsive layout - makes a two column-layout instead of four columns */ +/*@media screen and (max-width: 800px) { + .column { + flex: 50%; + max-width: 50%; + } +}*/ + + /*Responsive layout - makes the two columns stack on top of each other instead of next to each other */ +/*@media screen and (max-width: 600px) { + .column { + flex: 100%; + max-width: 100%; + } +}*/
\ No newline at end of file |