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
@-moz-document regexp("https://my.uopeople.edu/mod/.*") { | |
article > div > article | |
{ | |
box-shadow: -20px 0 0 #76AFB5 | |
} | |
article > div > article > div > article | |
{ | |
box-shadow: -20px 0 0 #AAA | |
} | |
} |
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
Vagrant.configure("2") do |config| | |
# config.vm.box = "centos/7" | |
# 共有フォルダが使えるイメージ | |
config.vm.box = "geerlingguy/centos7" | |
config.vm.synced_folder "/Users/<name>/repos", "/repos" | |
config.vm.provision "shell", inline: <<-SHELL | |
sudo yum install -y vim net-tools iputils | |
SHELL | |
config.vm.define :node1 do |node| |
OlderNewer