This file contains hidden or 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
:root { | |
/* | |
Set the root font size to a variable size that scales with the viewport to | |
ensure readability at any size. This setting results in a 16pt size on a | |
viewport that is 320pt wide. Larger vw values increase the scaling rate. | |
*/ | |
--font-size: 0.8em + 1vw; | |
/* | |
Set the root line height to a unitless value; at least 1.5 for readability. |
This file contains hidden or 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
Vagrant.configure('2') do |config| | |
ENV['ZONE'] ||= 'America/Detroit' | |
config.vm.box = 'debian/contrib-buster64' | |
config.vm.hostname = File.basename(Dir.pwd) + '.test' | |
config.vm.network 'private_network', type: 'dhcp' | |
config.vm.provision 'shell', path: 'https://github.com/mgsisk/providence/releases/download/v0.1.6/provisioner.sh' | |
conf.trigger.before :destroy, :halt, :reload, :suspend do |t| | |
t.info = 'Updating system hosts...' |
This file contains hidden or 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
<(?(?=!--)!--[\s\S]*--|(?(?=\?)\?[\s\S]*\?|(?(?=\/)\/[^.\d-][^\/\]'"[!#$%&()*+,;<=>?@^`{|}~ ]*|[^.\d-][^\/\]'"[!#$%&()*+,;<=>?@^`{|}~ ]*(?:\s[^.\d-][^\/\]'"[!#$%&()*+,;<=>?@^`{|}~ ]*(?:=(?:"[^"]*"|'[^']*'|[^'"<\s]*))?)*)\s?\/?))> | |
< # Tags always begin with <. | |
(? # What if... | |
(?=!--) # We have a comment? | |
!--[\s\S]*-- # If so, anything goes between <!-- and -->. | |
| # OR | |
(? # What if... | |
(?=\?) # We have a scripting tag? | |
\?[\s\S]*\? # If so, anything goes between <? and ?>. |