-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
57 lines (50 loc) · 946 Bytes
/
Copy pathstylesheet.css
File metadata and controls
57 lines (50 loc) · 946 Bytes
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
@import url('https://fonts.googleapis.com/css?family=Lato');
@font-face{
font-family: 'Pusab';
src: url('PUSAB___-webfont[1].ttf')
}
body {
background-image: url('https://raw.githubusercontent.com/Marc92020/geometry-dash-scratch-directory/main/stuff/618cff3e20616-large.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
h1 {
font-family: Pusab
}
#title{
color: white;
font-size: 40px;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
text-shadow: 2px 4px 4px rgba(0,0,0,0.3);
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
p {
font-family: Lato;
color: white;
}
a {
font-family: Lato;
}
/* unvisited link */
a:link {
color: white;
}
/* visited link */
a:visited {
color: white;
}
/* mouse over link */
a:hover {
color: white;
}
/* selected link */
a:active {
color: white;
}