comparison mod_http_oauth2/html/style.css @ 5650:0eb2d5ea2428

merge
author Stephen Paul Weber <singpolyma@singpolyma.net>
date Sat, 06 May 2023 19:40:23 -0500
parents 7acf73d2ebb5
children 7998b49d6512
comparison
equal deleted inserted replaced
5649:2c69577b28c2 5650:0eb2d5ea2428
1 body
2 {
3 margin-top:14%;
4 text-align:center;
5 background-color:#f8f8f8;
6 font-family:sans-serif
7 }
8
9 h1
10 {
11 font-size:xx-large;
12 }
13
14 legend {
15 font-size:x-large;
16 }
17 p
18 {
19 font-size:large;
20 }
21
22 .error
23 {
24 margin: 0.75em;
25 background-color: #f8d7da;
26 color: #842029;
27 border: solid 1px #f5c2c7;
28 }
29
30 input {
31 margin: 0.3rem;
32 padding: 0.2rem;
33 line-height: 1.5rem;
34 font-size: 110%;
35 }
36 h1, h2 {
37 text-align: left;
38 }
39
40 main {
41 max-width: 600px;
42 padding: 0 1.5em 1.5em 1.5em;
43 }
44
45 dt
46 {
47 font-weight: bold;
48 margin: 0.5em 0 0 0;
49 }
50
51 dd
52 {
53 margin: 0;
54 }
55
56 button, input[type=submit]
57 {
58 padding: 0.5rem;
59 margin: 0.75rem;
60 }
61
62 @media(prefers-color-scheme:dark)
63 {
64 body
65 {
66 background-color:#161616;
67 color:#eee;
68 }
69
70 .error {
71 color: #f8d7da;
72 background-color: #842029;
73 }
74
75
76 :link
77 {
78 color: #6197df;
79 }
80
81 :visited
82 {
83 color: #9a61df;
84 }
85 }
86
87 @media(min-width: 768px)
88 {
89 main
90 {
91 margin-left: auto;
92 margin-right: auto;
93 }
94
95 }