summaryrefslogtreecommitdiff
path: root/style.css
blob: 4d799f4656c4dd2a809323ffc908584eedd2acdd (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
103
104
105
:root {
  --html-color: #1b1b1b;
  --background-color: #2a2a2a;
  --title-primary: #90EE90;
  --title-secondary: #ADF7AD;
  --title-thirdth: #C1F7C1;
  --white: #ffffff;
}

/*### COLORS ###*/

html {
  background-color: var(--html-color);
}

body {
  color: white;
  background-color: var(--background-color);
}

h1, h2, h3 {
  text-align: center;
  color: var(--title-secondary);
}

a {
  color: #33bbff;
  text-decoration: none;
}

div#header {
  padding: 8% 0;
}

p#banner {
  line-height: 2em;
  color: var(--title-primary) ;
}

p#banner a {
  color: var(--title-primary) ;
}

#contact-link {
  font-size: 1.2em;
}

ul.toclist {
  font-size: 1.3em;
}

.title {
  color: var(--title-thirdth);
}

.desc {
  color: papayawhip;
}

li::marker {
  color: var(--title-thirdth);
}

/*### LAYOUT ###*/

body {
  font-size: 1em;
  max-width: 55em;
  padding: 0;
  margin: 0 auto;
  border: .1em solid var(--background-color);
    border-top-width: 0.1em;
    border-top-style: solid;
    border-top-color: var(--html-color);
  border-top: 0;
  -moz-box-shadow: 0 0 5px 5px var(--background-color);
  -webkit-box-shadow: 0 0 5px 5px var(--background-color);
  -icab-box-shadow: 0 0 5px 5px var(--background-color);
  -o-box-shadow: 0 0 5px 5px var(--background-color);
  box-shadow: 0 0 5px 5px var(--background-color);
}

/*header*/

#header {
  text-align:center;
}

/* banner */

#banner {
  display: inline;
  text-align:center;
  vertical-align: middle;
  font-size: 2em;
  padding:.6em;
  line-height:1em;
  font-weight: bold;
}



article.informational {
  font-size: 1.2em;
}