summaryrefslogtreecommitdiff
path: root/desktop.css
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2021-06-15 20:41:40 -0400
committerAdam T. Carpenter <atc@53hor.net>2021-06-15 20:41:40 -0400
commitef1e400f9e6bf00f5529abd1be63886372fe92b2 (patch)
tree80377c7ee6ed0e43737e74972ea9b14779b57e17 /desktop.css
parent153f905dfd1e95aa2bd0a227d2790021849d12d5 (diff)
downloadcarpentertutoring-ef1e400f9e6bf00f5529abd1be63886372fe92b2.tar.xz
carpentertutoring-ef1e400f9e6bf00f5529abd1be63886372fe92b2.zip
separated media viewports into individual stylesheets
Diffstat (limited to 'desktop.css')
-rw-r--r--desktop.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/desktop.css b/desktop.css
new file mode 100644
index 0000000..029d7e6
--- /dev/null
+++ b/desktop.css
@@ -0,0 +1,21 @@
+/* Desktop Layout */
+@media only screen and (min-width: 800px) {
+ nav {
+ flex-direction: row-reverse;
+ margin: 0;
+ padding: 0;
+ }
+
+ div.buttons {
+ flex-direction: row-reverse;
+ }
+
+ .banner {
+ text-align: right;
+ background: linear-gradient(
+ to right,
+ rgba(255, 255, 255, 0) 0%,
+ rgba(255, 255, 255, 1) 50%
+ );
+ }
+}