commit f242f37f1b51ba4002b94553430dec5e6efc6071 Author: feder Date: Sat Dec 10 18:50:09 2016 +0300 Add project diff --git a/README.md b/README.md new file mode 100644 index 0000000..be87429 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +anthrstlsht.css (another style sheet) v0.8 + +https://github.com/zlaxy/anthrstlsht + +under DWTWL 2.5 license: https://soundragon.su/license/license.html + + +fonts connection: http://font.ubuntu.com/web/ +for example: diff --git a/anthrstlsht.css b/anthrstlsht.css new file mode 100644 index 0000000..66ae12e --- /dev/null +++ b/anthrstlsht.css @@ -0,0 +1,152 @@ +/** + * anthrstlsht.css (another style sheet) v0.8 + * https://github.com/zlaxy/anthrstlsht + * DWTWL 2.5 license: https://soundragon.su/license/license.html + * fonts connection: http://font.ubuntu.com/web/ , for example: + * + */ + +html { + font-family: sans-serif; +} + +body { + margin: 0; + font-family: Ubuntu, sans-serif; + color: #222; +} + +.container { + width: 95%; + margin: auto; +} + +h1, h2, h3, h4 { + margin-top: 0; + margin-bottom: 0; + font-weight: 500; +} + +h1 { + font-size: 3.6rem; +} + +h2 { + font-size: 3.2rem; +} + +h3 { + font-size: 2.6rem; +} + +h4 { + font-size: 2.0rem; +} + +hr { + border-width: 0; + border-top: 1px solid #bbb; +} + +p { + margin-top: 0; + margin-bottom: 0; +} + +img { + border: 0; +} + +.button, +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + padding: 0 20px; + color: #555; + text-align: center; + font-family: Ubuntu, sans-serif; + font-weight: 800; + line-height: 28px; + background-color: transparent; + border-radius: 6px; + border: 1px solid #bbb; + cursor: pointer; +} + +.button:hover, +button:hover, +input[type="button"]:hover, +input[type="reset"]:hover, +input[type="submit"]:hover, +.button:focus, +button:focus, +input[type="button"]:focus, +input[type="reset"]:focus, +input[type="submit"]:focus { + color: #333; + border-color: #999; + outline: 0; +} + +button[disabled], +html input[disabled] { + cursor: default; +} + +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + height: 28px; + padding: 3px 5px; + border: 1px solid #bbb; + border-radius: 6px; + box-shadow: none; +} + +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + border: 1px solid #888; + outline: 0; +} + +code { + font-family: monospace, monospace; + padding: .2rem .2rem; + font-size: 80%; + background: #eee; + white-space: pre; + border: 1px solid #ccc; + border-radius: 6px; +} + +ul { + list-style: circle; +} + +ol, ul, li { + margin-top: 0; + margin-bottom: 0; +} + +button, +.button, +input, +textarea, +select, +fieldset { + margin-bottom: .1rem; +}