diff mod_http_oauth2/html/style.css @ 5270:7acf73d2ebb5

mod_http_oauth2: Use <fieldset> in templates because it looks nice Removes some CSS as well
author Kim Alvefur <zash@zash.se>
date Thu, 23 Mar 2023 16:19:09 +0100
parents 1756c0f929f5
children 7998b49d6512
line wrap: on
line diff
--- a/mod_http_oauth2/html/style.css	Thu Mar 23 12:47:51 2023 +0100
+++ b/mod_http_oauth2/html/style.css	Thu Mar 23 16:19:09 2023 +0100
@@ -1,5 +1,6 @@
 body
 {
+	margin-top:14%;
 	text-align:center;
 	background-color:#f8f8f8;
 	font-family:sans-serif
@@ -10,6 +11,9 @@
 	font-size:xx-large;
 }
 
+legend {
+	font-size:x-large;
+}
 p
 {
 	font-size:large;
@@ -82,30 +86,10 @@
 
 @media(min-width: 768px)
 {
-	body
-	{
-		margin-top: 3em;
-	}
-
 	main
 	{
 		margin-left: auto;
 		margin-right: auto;
-		border: solid 1px #1e1e1e;
-		background-color: #efefef;
 	}
 
-	@media(prefers-color-scheme:dark)
-	{
-		body
-		{
-			background-color: #4e4e4e;
-		}
-
-		main
-		{
-			color: #fff;
-			background-color: #1f1f1f;
-		}
-	}
 }