:host {
section {
display: grid;
grid-auto-flow: column;
grid-auto-columns: var(--bto-carousel-width, 200px);
gap: var(--bto-carosel-gap, 8px);
padding: var(--bto-carousel-padding-container, 10px 0);
overflow-x: auto;
}
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
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:400,200,300,600,700' rel='stylesheet' type='text/css'> | |
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | |
<button id="toggleButton">Toggle</button> | |
<ul class="timeline" id="timeline"> | |
<li class="li complete"> | |
<div class="timestamp"> | |
<span class="author">Abhi Sharma</span> | |
<span class="date">11/15/2014<span> | |
</div> |
- Docker Desktop on Windows (https://docs.docker.com/docker-for-windows/install)
- Mongodb Management Studio (https://robomongo.org/download)
- Launch Terminal or Command Prompt
- Type
docker --version
to check the version of docker - Pull docker image type
docker pull mongo
(this will get the latest version of mongodb)
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
<template> | |
<div id="app"> | |
<div style="text-align:center;margin-bottom:20px;"> | |
<h1>Welcome to Vue</h1> | |
<img width="200" src="https://vuejs.org/images/logo.png" /> | |
</div> | |
<div class="cards"> | |
<div v-for="(profile, index) in profiles" v-bind:key="index"> | |
<Card :profile="profile" /> | |
</div> |
NewerOlder