diff options
Diffstat (limited to 'app/scss')
-rw-r--r-- | app/scss/components.scss | 152 | ||||
-rw-r--r-- | app/scss/main.scss | 4 | ||||
-rw-r--r-- | app/scss/packagegrid.scss | 35 | ||||
-rw-r--r-- | app/scss/packages.scss | 75 | ||||
-rw-r--r-- | app/scss/page.scss | 81 |
5 files changed, 347 insertions, 0 deletions
diff --git a/app/scss/components.scss b/app/scss/components.scss new file mode 100644 index 0000000..e6f33d1 --- /dev/null +++ b/app/scss/components.scss @@ -0,0 +1,152 @@ + +h1 { + margin: 0; +} + +h2, h3 { + margin: 5px 0; +} + +a { + color: #0be; + font-weight: bold; + text-decoration: none; +} + +a:hover { + color: #0df; + text-decoration: underline; +} + +/* Containers */ + +.box { + border-radius: 5px; + margin: 15px 0; +} + +.box_grey { + padding: 10px; + background: #333; + border: 1px solid #444; +} + +.ul_boxes { + display: block; + margin: 0; + padding: 0; + list-style: none; +} + +.ul_boxes > li { + padding: 0; + list-style: none; +} + +.box_link { + display: block; + color: #ddd; + text-decoration: none; +} + +.box_link:hover{ + background: #3a3a3a; +} + +/* + buttonset +*/ + +.buttonset, .buttonset li { + display: block; + margin: 0; + padding: 0; + list-style: none; +} + +.buttonset { + margin: 15px 0; +} + +.button, .buttonset li a { + text-align: center; + display: inline-block; + padding: 0.5em 0.7em; + background: #333; + border: 1px solid #444; + color: #ddd; + border-radius: 5px; + text-decoration: none; +} + +.button:hover, .buttonset li a:hover { + background: #444; + border: 1px solid #555; + text-decoration: none; +} + +.btn_green { + background: #363 !important; + border: 1px solid #473; +} + +.btn_green:hover { + background: #474 !important; +} + +.linedbuttonset a { + border: 1px solid #eee; + border-radius: 3px; + padding: 4px 10px; + margin: 0; + display: block; +} + +.linedbuttonset { + display: block; + margin: 0; +} + +.linedbuttonset li { + display: inline-block; + margin: 10px 10px 0 0; +} + +/* Alerts */ + +#alerts { + list-style: none; + position: fixed; + bottom: 15px; + left: 0; + right: 0; +} + +#alerts .alert { + margin: 5px 0; + vertical-align: middle; +} + +#alerts .close { + float: right; + color: white; +} + +#alerts .close:hover { + color: #fff; +} + +.alert-error { + background: #933; + border: 1px solid #c44; +} + +.alert-warning { + background: #963; + border: 1px solid #c96; +} + +.alert-success { + background: #161; + border: 1px solid #393; +} diff --git a/app/scss/main.scss b/app/scss/main.scss new file mode 100644 index 0000000..160d180 --- /dev/null +++ b/app/scss/main.scss @@ -0,0 +1,4 @@ +@import "page.scss"; +@import "components.scss"; +@import "packages.scss"; +@import "packagegrid.scss"; diff --git a/app/scss/packagegrid.scss b/app/scss/packagegrid.scss new file mode 100644 index 0000000..dfdc009 --- /dev/null +++ b/app/scss/packagegrid.scss @@ -0,0 +1,35 @@ +.packagegrid { + list-style: none; + padding: 0; + margin: 0; +} + +.packagegrid li { + list-style: none; + display: inline-block; + padding: 0; + margin: 8px; +} + +.packagegrid a { + display: block; + width: 246px; + height: 164px; + border-radius: 7px; + position: relative; + overflow: hidden; + background-size: cover; + background-repeat: no-repeat; + background-position: center; +} + + +.packagegrid a span { + position: absolute; + left: 0; + right: 0; + bottom: 0; + padding: 5px; + background: rgba(255, 255, 255, 0.3); + color: black; +} diff --git a/app/scss/packages.scss b/app/scss/packages.scss new file mode 100644 index 0000000..a786d79 --- /dev/null +++ b/app/scss/packages.scss @@ -0,0 +1,75 @@ + +.screenshot_list, .screenshot_list li, .screenshot_list li a { + list-style: none; + margin: 0; + padding: 0; +} + +.screenshot_list li { + display: inline-block; + margin: 5px; + padding: 0; +} + +.screenshot_list li a { + display: block; +} + +.screenshot_list img { + width: 164px; + height: 164px; + object-fit: cover; +} + +.box_img { + position: relative; + background-position: center; + background-size: cover; + background-image: url("screenshot.png"); + min-height: 220px; + border-radius: 5px; + padding: 0; +} + +.box_img > h2 { + display: inline-block; + position: absolute; + bottom: 15px; + left: 15px; +} + +.sidebar_container { + display: block; + position: relative; + padding: 0; + margin: 0; +} + +.sidebar_container .right, .sidebar_container .left{ + position: absolute; + display: block; + top: 10px; + margin-top: 0; +} + +.sidebar_container .right { + right: 0; + width: 280px; +} + +.sidebar_container .left { + right: 295px; + left: 0; +} + +.sidebar_container .right > *:first-child, .sidebar_container .left > *:first-child { + margin-top: 0; +} + +.package-short-large { + font-size: 120%; +} + +.pkg_wiz_1, .pkg_wiz_2 { + display: none; +} diff --git a/app/scss/page.scss b/app/scss/page.scss new file mode 100644 index 0000000..9bb71d2 --- /dev/null +++ b/app/scss/page.scss @@ -0,0 +1,81 @@ +html, body { + font-family: "Arial", sans-serif; + background: #222; + color: #ddd; + padding: 0; + margin: 0; +} + +nav, main, #alerts { + width: 90%; + max-width: 960px; + margin: auto; + padding: 0; + display: block; +} + +nav { + margin: 0 auto 0 auto; + list-style: none; + background: #333; +} + +nav .navbar-nav { + float: left; +} + +nav .navbar-right { + float: right; +} + +nav ul { + margin: 0 auto 0 auto; + padding: 0; + list-style: none; +} + +nav li { + margin: 0; + padding: 0; + list-style: none; + display: inline-block; +} + +nav li a { + color: #ddd; + margin: 0; + padding: 1em 1em; + display: block; + border-left: 1px solid #444; +} + +nav a:hover { + color: #eee; + background: #444; + text-decoration: none; +} + +header { + padding: 20px; + background: #113; +} + + +/* Footer */ + +footer { + width: 80%; + max-width: 860px; + margin: auto; + padding: 50px 0 20px 0; +} + +footer a { + color: #666; +} + +.asideright { + float: right; + margin: 0 0 0 15px; + max-width: 300px; +} |