summaryrefslogtreecommitdiff
path: root/css/layout.css
diff options
context:
space:
mode:
authorBrian Picciano <bgp2396@bellsouth.net>2013-10-17 17:53:41 -0400
committerBrian Picciano <bgp2396@bellsouth.net>2013-10-17 17:53:41 -0400
commitd4aeef6cbc816d3c877848df09f6c7e3ccf15557 (patch)
treeb81b3a3414550e461b0cd22ba11d82cab2ee7287 /css/layout.css
parentccc625d18609eb9690c0d48a018ccc86c993d584 (diff)
moved css and font into root directory, with no template magic
Diffstat (limited to 'css/layout.css')
-rw-r--r--css/layout.css74
1 files changed, 74 insertions, 0 deletions
diff --git a/css/layout.css b/css/layout.css
new file mode 100644
index 0000000..572c8f6
--- /dev/null
+++ b/css/layout.css
@@ -0,0 +1,74 @@
+/*
+* Skeleton V1.1
+* Copyright 2011, Dave Gamache
+* www.getskeleton.com
+* Free to use under the MIT license.
+* http://www.opensource.org/licenses/mit-license.php
+* 8/17/2011
+*/
+
+/* Smaller than standard 960 (devices and browsers) */
+@media only screen and (max-width: 959px) {
+ #logo {
+ font-size: 21px;
+ margin-bottom: 15px; }
+ nav .button {
+ padding: 9px 20px 11px; }
+}
+
+/* Tablet Portrait size to standard 960 (devices and browsers) */
+@media only screen and (min-width: 768px) and (max-width: 959px) {
+ nav {
+ width: 160px; }
+ .sidebar h2 {
+ font-size: 18px;
+ }
+
+ .sidebar ul {
+ font-size: 14px;
+ }
+}
+
+/* All Mobile Sizes (devices and browser) */
+@media only screen and (max-width: 767px) {
+ header h1 { font-size: 34px; line-height: 37px; }
+ nav { position: relative; }
+ nav ul,
+ #logo { text-align: left; }
+ .sidebar {
+ display: none;
+ }
+ .content {
+ border: 0px;
+ padding-left: 0px;
+ }
+}
+
+/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
+@media only screen and (min-width: 480px) and (max-width: 767px) {
+ .sidebar {
+ display: none;
+ }
+
+ h1 {
+ font-size: 28px;
+ line-height: 36px;
+ }
+}
+
+/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
+@media only screen and (max-width: 479px) {
+ .sidebar {
+ display: none;
+ }
+
+ h1 {
+ font-size: 24px;
+ line-height: 32px;
+ }
+
+ h2 {
+ font-size: 22px;
+ line-height: 24px;
+ }
+} \ No newline at end of file