Skip to content

Instantly share code, notes, and snippets.

@oliverbth05
oliverbth05 / app.css
Last active April 24, 2018 19:55
VUE.js Simple Game
#body{
background: #DA4453; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #89216B, #DA4453); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #89216B, #DA4453); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#headerSegment{
text-align:center;
@oliverbth05
oliverbth05 / app.css
Last active April 23, 2018 20:47
Basic Descriptive Stats with Computed Properties (Vue)
#app{
padding-top: 100px;
}
h3{
text-align:center;
}
#dataHeader{
padding-bottom: 5px;
@oliverbth05
oliverbth05 / app.css
Created April 21, 2018 23:12
Input --> Array --> Html
body {
font-family: 'Roboto', sans-serif;
font-weight: lighter;
}
#navbar {
margin-top: 0;
@oliverbth05
oliverbth05 / app.js
Created April 21, 2018 17:58
Simple Counter Component - Vue.js
var app = new Vue({
el: "#counterApp",
data: {
count: 0
},
methods:{
increment: function(){