ユーザ用ツール

サイト用ツール


digital:start

文書の過去の版を表示しています。


Digital

テスト環境のサーバにバッヂを付ける

Google Chrome の機能拡張Aminoで、ドメインに対してカスタムCSSを追加できます。

https://chrome.google.com/webstore/detail/amino-live-css-editor/pbcpfbcibpcbfbmddogfhcijfpboeaaf

Animo
body:after
{
    z-index: 65535;
    display: block;
    content: '検証環境';
    position: fixed;
    top: 10px;
    right: 20px;
    border: 7px solid red;
    color: red;
    border-radius: 15px;
    padding: 2px 20px;
    line-height: 1;
    font-weight: bold;
    font-size: 70px;
    transition: all 500ms cubic-bezier(0.040, 0.730, 0.530, 1.310);
    transition-delay: 5s;
    transform: rotate(5deg);
    transform-origin: left bottom;
}
body:hover:after
{
    transition-delay: 0s;
    top: -2em;
}
2019/02/10 09:56 · paya

CSS Tips

みずたま背景

dotted_pattern.css
.dottedbg {
	background: #888;
	background-image: radial-gradient(#444 20%, transparent 0), radial-gradient(#444 20%, transparent 0);
	background-position: 0 0, 25px 25px;
	background-size: 50px 50px;
}

Dotted B.G.

みずたま背景2

dotted_pattern.css
.dottedbg2 {
	background: #888;
	background-image: radial-gradient(#444 40%, transparent 0), radial-gradient(#444 40%, transparent 0);
	background-position: 0 0, 25px 25px;
	background-size: 50px 50px;
}

Dotted B.G.

みずたま背景3

dotted_pattern.css
.dottedbg3 {
	background: #888;
	background-image: radial-gradient(#444 20%, transparent 0), radial-gradient(#444 20%, transparent 0);
	background-position: 0 0, 10px 10px;
	background-size: 20px 20px;
}

Dotted B.G.

応用

dottedButton01.css
.dotteButton01 {
	background: #E0609F;
	background-image: radial-gradient(#965BC4 30%, transparent 0), radial-gradient(#965BC4 30%, transparent 0);
	background-position: 0 0, 15px 15px;
	background-size: 30px 30px;
	border: 2px inset rgba(108, 69, 138, 0.3);
	border-radius: 0.5em;
	line-height: 1;
	padding: 0.4em 1.5em;
	color: white;
	font-size: 150%;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	top: 0;
	left: 0;
	transition-property: all;
	transition-duration: 0.5s;
	box-shadow: 2px 4px 2px 1px rgba(0, 0, 0, 0.3);
	text-shadow: 1px 0 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 0 rgba(0, 0, 0, 0.2), -1px 0 0 rgba(0, 0, 0, 0.3), -1px -1px 0 rgba(0, 0, 0, 0.2), 0 -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 0 rgba(0, 0, 0, 0.2);
}
.dotteButton01:hover {
	background-image: radial-gradient(rgba(0,0,0,0.1) 30%, transparent 0), radial-gradient(rgba(0,0,0,0.1) 30%, transparent 0);
	top: 2px;
	left: 1px;
	text-decoration: none;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition-duration: 0.1s;
}

みずたまがらのボタン

2018/12/27 13:15 · paya

スタートアップフォルダ

アカウントのAppData内にある、起動項目フォルダ。アカウントログイン時に内容が起動される。

C:\Users\[UserAccount]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
2018/12/26 09:46 · paya

フォルダの同期

robocopy /mir [sorce dir] [destiny dir]

をテキストファイルで保存して拡張子を.batにする。

ダブルクリックでバッチを起動。スタートアップなどに保存しておけば、恒常的な稼働が可能になる。

example.bat
robocopy /mir "c:/foo/bar/" "c:/hoge/example/dir/"
2018/12/26 09:40 · paya
digital/start.1545784606.txt.gz · 最終更新: 2018/12/26 09:36 by paya