-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
72 lines (63 loc) · 1.89 KB
/
global.css
File metadata and controls
72 lines (63 loc) · 1.89 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@font-face {
font-family: 'Sui Generis';
src: url('./fonts/sui-generis-free.rg-regular.ttf') format('embedded-opentype'), /* Internet Explorer */
url('./fonts/sui-generis-free.rg-regular.ttf') format('woff2'), /* Super Modern Browsers */
url('./fonts/sui-generis-free.rg-regular.ttf') format('woff'), /* Pretty Modern Browsers */
url('./fonts/sui-generis-free.rg-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('./fonts/sui-generis-free.rg-regular.ttf') format('svg'); /* Legacy iOS */
}
@font-face {
font-family: 'Aileron Regular';
src: url('./fonts/aileron.regular.otf') format('embedded-opentype'), /* Internet Explorer */
url('./fonts/aileron.regular.otf') format('woff2'), /* Super Modern Browsers */
url('./fonts/aileron.regular.otf') format('woff'), /* Pretty Modern Browsers */
url('./fonts/aileron.regular.otf') format('truetype'), /* Safari, Android, iOS */
url('./fonts/aileron.regular.otf') format('svg'); /* Legacy iOS */
}
header, main {
background-color: #0005;
color: #eee;
border-radius: 10px;
padding:5px;
margin:10px;
}
body {
background-color: #222;
line-height: 1.6;
color: #eee;
font-family: 'Roboto', 'Aileron Regular', sans-serif;
font-size: 18px;
margin: 0;
padding: 0;
padding-bottom: 190px;
}
@media (min-width: 550px) {
body {
padding-bottom: 120px;
}
}
h1, h2, h3 {
font-family: 'Sui Generis';
}
h1 {
font-size: 30px;
}
a {
text-decoration: none;
}
a:link {
color: violet;
}
/* visited link */
a:visited {
color: pink;
}
/* mouse over link */
a:hover {
color: salmon ;
}
/* selected link */
a:active {
color: plum;
}