Skip to content

Instantly share code, notes, and snippets.

@freshcutdevelopment
Last active September 10, 2017 08:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save freshcutdevelopment/381979f23092f707e748212bd6e401dd to your computer and use it in GitHub Desktop.
Info card v3 snippet (Blog)
<template>
<style>
.card-content {
border:1px solid grey;
width: 500px;
height: 150px;
margin-bottom:10px;
padding:20px;
color: #777;
background-color: #F7F7F7;
font-family: 'Source Sans Pro',
Helvetica, 'Open Sans', sans-serif;
}
.card-body{
background-color:white;
padding:10px;
padding-bottom: 30px;
}
</style>
<div class="card-content">
<p>info card content</p>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment