summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2024-11-14 21:49:47 -0500
committerAdam T. Carpenter <atc@53hor.net>2024-11-14 21:49:47 -0500
commit4aa45ef3e7798ee18bea8b49af75e383afce02a1 (patch)
tree7a1353753d9300929b43a561ff2f1aae59b6434f /static
parent014e34fa4a8cd4e3cdb3573a7748696c68873523 (diff)
parentfc0e8296178ca779a270d91b681777f50b3b626d (diff)
downloadcarpentertutoring-4aa45ef3e7798ee18bea8b49af75e383afce02a1.tar.xz
carpentertutoring-4aa45ef3e7798ee18bea8b49af75e383afce02a1.zip
Merge branch 'release'HEADmaster
Diffstat (limited to 'static')
-rw-r--r--static/desktop.css81
-rw-r--r--static/favicon.icobin0 -> 327262 bytes
-rw-r--r--static/widescreen.css8
3 files changed, 89 insertions, 0 deletions
diff --git a/static/desktop.css b/static/desktop.css
new file mode 100644
index 0000000..1b0eb43
--- /dev/null
+++ b/static/desktop.css
@@ -0,0 +1,81 @@
+@media only screen and (min-width: 700px) {
+ section {
+ padding: 3em;
+ }
+
+ nav {
+ flex-direction: row-reverse;
+ margin: 0;
+ padding: 0;
+ top: 0;
+ position: fixed;
+ width: 100%;
+ }
+
+ div.buttons {
+ flex-direction: row-reverse;
+ }
+
+ .banner {
+ padding-top: 7em;
+ 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: 0.5em;
+ }
+
+ 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%;
+ }
+}
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..8ba4c15
--- /dev/null
+++ b/static/favicon.ico
Binary files differ
diff --git a/static/widescreen.css b/static/widescreen.css
new file mode 100644
index 0000000..8231129
--- /dev/null
+++ b/static/widescreen.css
@@ -0,0 +1,8 @@
+@media only screen and (min-width: 2000px) {
+ section {
+ padding-top: 3em;
+ padding-bottom: 3em;
+ padding-left: 25%;
+ padding-right: 25%;
+ }
+}