In your command-line run the following commands:
brew doctor
brew update
import { Component } from '@angular/core'; | |
import { FormControl, Validators } from '@angular/forms'; | |
import { HttpClient, HttpParams } from '@angular/common/http'; | |
interface MailChimpResponse { | |
result: string; | |
msg: string; | |
} | |
@Component({ |
@mixin interpolate($properties, $min-screen, $max-screen, $min-value, $max-value) { | |
& { | |
@each $property in $properties { | |
#{$property}: $min-value; | |
} | |
@media screen and (min-width: $min-screen) { | |
@each $property in $properties { | |
#{$property}: calc-interpolation($min-screen, $min-value, $max-screen, $max-value); | |
} |
import { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({name: 'slugify'}) | |
export class SlugifyPipe implements PipeTransform { | |
transform(input: string): string { | |
return input.toString().toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text |
<h1>Responsive Ratio-Based Typography SASS Mixin</h1> | |
<hr> | |
<h2>How it works:</h2> | |
<p>This SASS Mixin takes one parameter: font size. When the mixin is used in conjunction with media queries you can easily make intricate responsive typographical styles very quickly.</p> | |
<h3>How to use it:</h3> | |
<code> | |
<pre> | |
//0px - first breakpoint: |
.card-img-overlay-gradient { | |
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); | |
} | |
.flex-container { | |
display: grid; | |
grid-gap: 10px; | |
grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); | |
grid-auto-rows: 20px; | |
} | |
.flex-item {} |
<?php | |
function example_ajax_enqueue() { | |
// Enqueue javascript on the frontend. | |
wp_enqueue_script( | |
'example-ajax-script', | |
get_template_directory_uri() . '/js/simple-ajax-example.js', | |
array( 'jquery' ) | |
); |
In your command-line run the following commands:
brew doctor
brew update
// fluidly resize type | |
// based on example here https://css-tricks.com/snippets/css/fluid-typography/ | |
@mixin fluid-type($font-min, $font-max, $screen-min, $screen-max) { | |
font-size: #{$font-min}px; | |
@media only screen and (min-width: #{$screen-min}px) { | |
font-size: calc( | |
#{$font-min}px + #{($font-max - $font-min)} * (100vw - #{$screen-min}px) / (#{$screen-max} - #{$screen-min}) | |
); | |
} |