aboutsummaryrefslogtreecommitdiff
path: root/src/css
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-11-15 21:43:36 -0600
committerMark Powers <markppowers0@gmail.com>2020-11-15 21:43:36 -0600
commit63668ca89f055b2233a8aa6caf4213853918d68d (patch)
tree0d9bf673daaadba36b70a3b7651a1c46c074e938 /src/css
parent104d9fd314d6f8650c8e032164c7db00c869eea7 (diff)
Switch to handlebars for templating
Diffstat (limited to 'src/css')
-rw-r--r--src/css/mobile-styles.css23
-rw-r--r--src/css/styles.css31
2 files changed, 27 insertions, 27 deletions
diff --git a/src/css/mobile-styles.css b/src/css/mobile-styles.css
new file mode 100644
index 0000000..36553cc
--- /dev/null
+++ b/src/css/mobile-styles.css
@@ -0,0 +1,23 @@
+@media screen and (min-width: 900px) {
+ body {
+ width: 100%;
+ /* margin: auto; */
+ }
+ .card-img {
+ display: flex;
+ flex-flow: row wrap;
+ align-content: flex-start;
+ }
+ .card img {
+ width: 400px;
+ }
+ form input[type=text], input[type=password], input[type=email] {
+ max-width: 600px;
+ }
+ form textarea {
+ max-width: 600px;
+ }
+ form input[type=submit] {
+ margin-left: 0px;
+ }
+} \ No newline at end of file
diff --git a/src/css/styles.css b/src/css/styles.css
index 522b007..f406104 100644
--- a/src/css/styles.css
+++ b/src/css/styles.css
@@ -11,8 +11,9 @@
body {
- width: 100%;
- margin: 0px;
+ width: 80%;
+ margin: auto;
+ /* margin: 0px; */
background-color: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
@@ -93,7 +94,7 @@ a {
width: 100%;
}
.feed {
- width: 80%;
+ /* width: 80%; */
min-width: 200px;
margin: auto;
display: flex;
@@ -109,30 +110,6 @@ p {
margin-top: 0;
}
-@media screen and (min-width: 900px) {
- body {
- width: 100%;
- /* margin: auto; */
- }
- .card-img {
- display: flex;
- flex-flow: row wrap;
- align-content: flex-start;
- }
- .card img {
- width: 400px;
- }
- form input[type=text], input[type=password], input[type=email] {
- max-width: 600px;
- }
- form textarea {
- max-width: 600px;
- }
- form input[type=submit] {
- margin-left: 0px;
- }
-}
-
.titlebar {
padding: 5px;
border-top: 1px solid var(--light-text);