summaryrefslogtreecommitdiff
path: root/static/desktop.css
diff options
context:
space:
mode:
author53hornet <atc@53hor.net>2021-08-22 11:03:36 -0400
committer53hornet <atc@53hor.net>2021-08-22 11:03:36 -0400
commit7494b946920bf93fa12ac1fc71a07b1165a203e2 (patch)
tree0003ebcdb595c53a0a8bb1cde8cf54b94a52c3f7 /static/desktop.css
parentf2e39406302c3b79a608a6f20e058a084401c6eb (diff)
downloadcarpentertutoring-7494b946920bf93fa12ac1fc71a07b1165a203e2.tar.xz
carpentertutoring-7494b946920bf93fa12ac1fc71a07b1165a203e2.zip
begin migrate to warp for evals functionality and site server
Diffstat (limited to 'static/desktop.css')
-rw-r--r--static/desktop.css77
1 files changed, 77 insertions, 0 deletions
diff --git a/static/desktop.css b/static/desktop.css
new file mode 100644
index 0000000..2f2b342
--- /dev/null
+++ b/static/desktop.css
@@ -0,0 +1,77 @@
+@media only screen and (min-width: 800px) {
+ section {
+ padding: 3em;
+ }
+
+ 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%
+ );
+ }
+
+ form {
+ margin-right: 10%;
+ margin-left: 10%;
+ }
+
+ table td,
+ table th {
+ padding: 1em;
+ }
+
+ section.flexible {
+ flex-direction: row;
+ }
+
+ section.flexible div,
+ section.flexible figure {
+ flex-basis: 0;
+ }
+
+ section.flexible div {
+ flex-grow: 2;
+ }
+
+ section.flexible figure {
+ flex-grow: 1;
+ }
+
+ .signature img {
+ width: 30%;
+ }
+
+ .logo img {
+ width: 15%;
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .card {
+ padding: 2em;
+ }
+
+ #reviews .card,
+ #offerings .card {
+ display: block;
+ flex: none;
+ width: 20%;
+ }
+
+ .modal .card {
+ width: 25%;
+ }
+}