From 9d3c8c0e6e1a7ba43bf3dc19350d1dca68b657a3 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Sun, 10 Feb 2019 11:16:07 +0800 Subject: Initial commit. --- common.css | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 common.css (limited to 'common.css') diff --git a/common.css b/common.css new file mode 100644 index 0000000..e400635 --- /dev/null +++ b/common.css @@ -0,0 +1,72 @@ +@font-face{ + font-family: 'CMU Typewriter Text w'; + src: url(/cmunbtl.woff); +} +.CTitle{ + font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-variant-ligatures: none; +} +.TText{ + font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-variant-ligatures: none; +} +a{ +text-decoration:none; +} +a:link{ +color:#1194FF; +} +a:visited{ +color:#20ACFF; +} +a:hover{ +color:#3FBFFF; +} +a:active{ +color:#CCCCFF; +} +div.comment{ + border:1px solid #CCC; + margin:1em; +} +div.author{ + text-align:right; + padding-right:0.5em; + padding-bottom:0.5em; +} +div.floatingl{ + left: 0px; + bottom: -10px; + position: fixed; + z-index: 10000; +} +div.floatingr{ + right: 0px; + bottom: -10px; + position: fixed; + transform: rotateY(180deg); + z-index: 10000; +} +.fakebtn{display:inline-block;color:#000;padding:1px 6px 1px 6px;} +button{ + border:none; + padding:0.5em 2em; + text-align:center; + -webkit-transition-duration:0.4s; + transition-duration:0.4s; + font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-variant-ligatures: none; +} +input[type="text"]{ + border: none; + border-bottom: 2px solid; + outline: none !important; + background-color: rgba(0,0,0,0) !important; + font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-variant-ligatures: none; +} +textarea{ + border:2px solid; + outline:none !important; + background-color:rgba(0,0,0,0) !important; +} -- cgit v1.2.3