-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (46 loc) · 1.14 KB
/
Copy pathindex.css
File metadata and controls
63 lines (46 loc) · 1.14 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
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
font-family: "Roboto", sans-serif;
text-align: center;
background-image: url(catswallpaper.jpg);
text-shadow: 1px 1px 2px rgb(255, 255, 255);
margin: auto 5%;
}
ol {
padding: 0 0 0 0;
}
li {
font-size: 30px;
list-style: none;
}
h1 {
font-size: 72px;
background-image: -webkit-linear-gradient(blue, black);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
}
h1:after {
background: none;
content: attr(data-text);
left: 0;
position: absolute;
/*text-shadow: 1px 1px 2px #000;*/
/*text-shadow: 0 0 2px #f00; -moz-text-shadow: 0 0 2px #f00; -webkit-text-shadow: 0 0 2px #f00; */
text-shadow: -2px 0 2px #f00, 0 2px 2px #f00, 2px 0 2px #f00, 0 -2px 2px #f00;
-moz-text-shadow: -2px 0 2px #f00, 0 2px 2px #f00, 2px 0 2px #f00,
0 -2px 2px #f00;
-webkit-text-shadow: -2px 0 2px #f00, 0 2px 2px #f00, 2px 0 2px #f00,
0 -2px 2px #f00;
top: 0;
z-index: -1;
}
a {
color: violet;
text-decoration-line: none;
}
#content {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 2% 2%;
padding: 3%;
}