-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
83 lines (71 loc) · 1.45 KB
/
styles.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
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
body {
font-family: Arial, sans-serif;
background: radial-gradient(ellipse at center, #FFBED3 0%, #F9F9F9 53%, #FFC2B9 100%);
text-align: center;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
cursor: url('cursor/normal.cur');
}
h1 {
font-size: 90px;
font-weight: 800;
color: pink;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px pink, 0 0 30px pink, 0 0 40px pink, 0 0 55px pink, 0 0 75px pink;
}
table, table td, table tr {
border-radius: 20px;
border: 1px solid black;
padding: 10px;
}
.funfacts {
text-align: left;
}
table {
border: 5px dotted lightpink;
border-collapse: inherit;
width: 100%;
max-width: 800px;
margin: 0;
}
ul {
list-style: none;
padding: 0;
font-size: 0.75em;
}
h4 {
font-weight: normal;
border: 1px dashed black;
border-radius: 20px;
padding: 5px;
margin: 0;
}
a {
color: #dc4b87;
}
a::hover {
color: #fff;
cursor: url('cursor/link.cur');
}
a::after {
color: #bd4f8e;
}
canvas {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
}
#footer {
font-family: 'Courier New', Courier, monospace;
font-size: x-small;
}
.vertical-gifs img {
display: block;
margin: 10px auto;
width: 200px;
}