summaryrefslogtreecommitdiff
path: root/style.css
blob: 74196dc576cf6683962ed77e43382d4f8f44b37c (plain)
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
html {
	color: #d8dee9;
	font-family: sans-serif;
}

.column {
	margin-bottom: 1em;
}

.column h1, .column h2, .column h3, .column h4, .column h5 {
	margin-top: 0;
}

body {
  color: #F2F6F3;
  background: #151515;
  text-align: justify;
  font-style: sans-serif ;
}

h1 {
	text-align: center ;
	color: lightgreen ;
}

ul, ol {
	margin-left: 20px;
	margin-right: 20px;
	padding-left: 0;
}

ul ul {
	list-style-type: circle;
	margin-block-start: 0px;
	margin-block-end: 0px;
}

main {
	margin: auto ;
}

p img, li img, h1 img, h2 img, h3 img, h4 img, dt img {
	vertical-align: middle ;
	max-width: 1em;
	max-height: 1em;
	border: none ;
	display: inline ;
}

a { color: #A5D6FF ; text-decoration: none ;}

dl { 
  display: inline-flex;
  text-align: center;
}

footer {
	text-align: center ;
	font-variant: small-caps ;
	clear: both ;
	padding: 2em 0 ;
}

footer li {
	display: inline-block ;
	padding: 0.5em ;
	font-size: x-large ;
}

footer li:hover {
	background: #A5D6FF  ;
}

nav, footer, .tag-list{
	text-align: center;
	font-variant: small-caps;
	clear: both;
}

nav { 
	font-size: small;
}

nav ul, footer ul, .tag-list {
	padding: 0;
}

nav li, footer li, .tag-list li{
	color: wheat;
	display: inline-block;
	list-style: none;
	border-radius: 10px;
	padding: .5em;
	max-width: 7em;
}

code {
	background: #222 ;
	color: var(--limish) ;
	border-radius: 5px ;
	overflow-wrap: break-word ;
}