-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (97 loc) · 1.5 KB
/
Copy pathstyles.css
File metadata and controls
116 lines (97 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
:root {
--black: #222;
--white: #ddd;
--ltgray: #aaa;
--gray: #888;
--color: yellowgreen;
--titlecolor: tomato;
--header: #000;
--headercolor: hotpink;
--hr: cornflowerblue;
}
body {
font-family: monospace;
margin: 0;
font-size: 1rem;
background-color: var(--black);
color: var(--white);
}
div {
max-width: 800px;
margin: 16px;
}
hr {
margin: 40px -16px 24px 0px;
width: 95vw;
height: 1px;
border: none;
background: linear-gradient(to right, var(--hr) 50%, var(--black) 50%);
background-size: 1.5rem, 100%;
transform: rotate(-0.5deg);
}
img {
max-width: 800px;
width: 100%;
}
.medImg {
max-width: 395px;
}
.smImg {
max-height: 120px;
max-width: 80%;
width: auto;
height: auto;
padding: 24px;
}
.trashImg {
width: 100%;
max-width: 350px;
margin: 8px;
}
a {
color: inherit;
}
p {
margin: 16px;
color: var(--gray);
}
em {
font-style: normal;
color: var(--color);
}
i {
font-size: 0.75rem;
font-style: normal;
color: teal;
}
ul {
list-style-type: square;
}
li {
padding: 8px;
}
h1 {
font-size: 1.25rem;
color: var(--titlecolor);
}
h2 {
color: var(--ltgray);
font-size: 1rem;
}
cite {
color: var(--gray);
}
header, footer {
background: var(--header);
color: var(--headercolor);
padding: 16px;
text-align: right;
}
footer {
bottom: 0;
}
.footerLink {
margin: 8px;
text-decoration: underline;
color: hotpink;
}