about summary refs log tree commit diff stats
path: root/styles.css
blob: 7983802f06dfcdb899e0f2c9da5050c2be487114 (plain) (blame)
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
*:focus {
	outline: 4px solid #ffd700;
	outline-offset: 4px;
}

::selection { 
	background-color: #ddd;
	color: #000;
	text-decoration: none;
}

body {
	max-width: 42em;
	padding: 0 1em;
	color: #1e273a;
}

p	{
	line-height: 1.25;
}

img	{
	max-width: 100%;
	margin: 0;
	padding-bottom: 2em;
}

a {
	color: deeppink;
}

a:visited {
	color: teal;
}

a:hover {
	opacity: 0.5;
}

a, blockquote {
	transition-duration: .1s;
  transition-timing-function: ease-in-out;
}

blockquote {
	border-left: 8px solid deeppink;
	padding-left: 1em;
}

blockquote:hover {
	border-left: 8px solid #72dec2;
}

pre {
	background-color: #e5e5e5;
	padding: 1em;
}