about summary refs log tree commit diff stats
path: root/style.css
diff options
context:
space:
mode:
authorCase Duckworth2024-03-18 10:25:28 -0500
committerCase Duckworth2024-03-18 10:25:28 -0500
commit0a0649baafd381086de630dc8f475782c74f6f6f (patch)
treefdcea6389b392a6b68c9a9c7f69479f8829737c2 /style.css
parentChange static copying/ update readme (diff)
downloadschwa-0a0649baafd381086de630dc8f475782c74f6f6f.tar.gz
schwa-0a0649baafd381086de630dc8f475782c74f6f6f.zip
Move style and template to example/
Diffstat (limited to 'style.css')
-rw-r--r--style.css83
1 files changed, 0 insertions, 83 deletions
diff --git a/style.css b/style.css deleted file mode 100644 index bbbc604..0000000 --- a/style.css +++ /dev/null
@@ -1,83 +0,0 @@
1/* schwa example style */
2
3* { box-sizing: border-box; }
4
5body {
6 width: fit-content;
7 margin: auto;
8 padding: 1em;
9 background: gray;
10}
11
12main {
13 min-width: 40em;
14 background: white;
15 padding: 1em;
16 margin: 0;
17 border: 2px outset black;
18 border-top: none;
19}
20
21.ll {
22 display: inline-block;
23 width: 3em;
24 text-align: right;
25 padding-right: 0.5em;
26 margin-right: 0.5em;
27}
28
29header {
30 width: 100%;
31 color: white;
32 background: teal;
33 padding: 1em;
34 margin: 0;
35 border: 2px outset black;
36 border-bottom: none;
37 display: flex;
38 align-items: baseline;
39 justify-content: space-between;
40}
41
42header h1 {
43 margin: 4px;
44}
45
46footer, footer p {
47 margin: 0; padding: 4px;
48 text-align: right;
49 color: white;
50}
51
52header a:link {
53 text-decoration: none;
54 background: lightgray;
55 color: black;
56 padding: 4px;
57 border: 2px outset gray;
58}
59header a:visited {
60 color: black;
61}
62header a:hover {
63 border: 2px inset gray;
64}
65header a:active {}
66
67nav ul {
68 padding: 0; margin: 0;
69}
70
71nav li {
72 display: inline-block;
73}
74
75.clone, .desc {
76 font-style: italic;
77 text-align: right;
78 margin: 0;
79}
80
81#readme {
82 max-width: 45em;
83}