-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
39 lines (32 loc) · 916 Bytes
/
style.css
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
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
body {
background-color: black;
color: white;
font-family: Ubuntu;
}
a:link {
color: #00ccff;
}
a:visited {
color: #00ccff;
}
a:hover {
color: #00ccff;
}
a:active {
color: #00ccff;
}
@font-face {
font-family: 'Ubuntu';
src: url('untitledsky.neocities.org/fonts/Ubuntu-Regular.ttf') format('truetype'),
url('untitledsky.neocities.org/fonts/Ubuntu-Light.ttf') format('truetype'),
url('untitledsky.neocities.org/fonts/Ubuntu-Medium.ttf') format('truetype');
/* Additional font formats can be added as needed. */
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Ubuntu', calibri; /* Fallback font for compatibility */
}