summaryrefslogtreecommitdiff
path: root/extras/html/style-business.css
blob: 3fbbf038df0b1c60672e77133511d0a10c8e01e5 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@font-face {
    font-family: 'text';
    src: url("./text.ttf") format("truetype");
}

@font-face {
    font-family: 'heading';
    src: url("./heading.ttf") format("truetype");
}

@font-face {
    font-family: 'code';
    src: url("./code.ttf") format("truetype");
}

@font-face {
    font-family: 'handnotes';
    src: url("./handnotes.ttf") format("truetype");
}

@font-face {
    font-family: 'typewriter';
    src: url("./typewriter.ttf") format("truetype");
}

body {
    font-family: text, sans-serif;
    background: linear-gradient(135deg, #f4f4f4, #e0e0e0);
    color: #333;
    max-width: 1024px;
    padding: 20px;
    margin: 20px auto;
    border: 1px solid #ccc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2, h3 {
    font-family: heading, serif;
    color: #303c6c;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
    color: #1a73e8;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #2a65ba;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

a.textlink:before {
    content: "⇒ ";
    padding-left: 11px;
}

.quote {
    font-style: italic;
    color: #2a65ba;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.quote:before {
    content: "« ";
    padding-left: 2px;
}

.quote:after {
    content: " »";
    padding-right: 2px;
}

ul {
    list-style: none;
    padding-right: 23px;
    padding-left: 10px;
    margin: 0.75em 0 0.75em 0;
}

li {
    color: #303c6c;
    margin-left: 1em;
    margin-bottom: 0.25em;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

li:before {
    content: "★";
    padding-right: 5px;
    color: #1a73e8;
}

img {
    max-width: 90%;
    display: block;
    margin: auto;
    border: 2px solid #ccc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

pre {
    font-family: code, monospace;
    overflow-x: auto;
    background: #f0f0f0;
    padding: 20px;
    border-left: 4px solid #1a73e8;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    color: #333;
}

span.inlinecode {
    font-family: code, monospace;
    background: #f0f0f0;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
    color: #333;
}

.footer {
    font-family: handnotes;
}