-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
102 lines (84 loc) · 1.59 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
html, body {
background-color: #0f1111;
color: white;
font-family: "Comic Sans MS", "Comic Sans", cursive;
}
img, video {
width: 40em;
height: auto;
}
a {
text-decoration: none;
text-decoration-color: currentcolor;
color: rgb(158, 225, 255);
background-color: rgba(0, 0, 0, 0);
background-image: none;
}
footer {
position: fixed;
bottom: 0;
right: 0;
padding: 0.7em;
cursor: default;
}
a:hover, a:focus {
text-decoration: underline;
}
.table-cell {
display: table-cell;
}
.table-row {
display: table-row;
}
.unlink {
text-decoration: none !important;
color: white !important;
}
.unlink-color {
color: white !important;
}
.header {
display: table-cell;
font-size: 2em;
font-weight: bold;
padding-bottom: 0.25em;
}
.header2 {
display: table-cell;
font-size: 1.5em;
font-weight: bold;
padding-bottom: 0.5em;
}
.header3 {
display: table-cell;
font-size: 1.17em;
font-weight: bold;
padding-bottom: 0.5em;
}
.index-header::before {
content: "Welcome to My Webpage!";
}
.index-header:hover::before {
content: "Welcome to My Meme Page!";
}
.reimagined:hover::after {
content: " (very cool)";
}
.twitter-text::before {
content: "my 𝕏";
}
.twitter-text:hover::before {
content: "my twitter";
}
@keyframes spin {
0% { transform: rotateX(0deg) rotateY(0deg); }
25% { transform: rotateX(15deg) rotateY(-90deg); }
50% { transform: rotateX(0deg) rotateY(-180deg); }
75% { transform: rotateX(-15deg) rotateY(-270deg); }
100% { transform: rotateX(0deg) rotateY(-360deg); }
}
.y-spin {
display: inline-block;
animation: spin 2s linear infinite;
transform-style: preserve-3d;
}