-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (72 loc) · 1.43 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (72 loc) · 1.43 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
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
body {
background: #1a0000 url('bg.gif');
margin: 0;
min-height: 100vh;
background-repeat: repeat;
background-size: 1050px;
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
}
.content {
background-color: #1b0000b7;
color: white;
text-align: center;
padding: 40px;
border-radius: 25px;
border: 4px solid #f50000;
animation-name: borderAnim;
animation-duration: 4s;
animation-iteration-count: infinite;
font-family: sans-serif;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
width: 80%;
max-width: 600px;
box-sizing: border-box;
}
.content img {
width: 100px;
float: top;
margin-right: 15px;
margin-bottom: 10px;
}
.bottom {
background: #1b0000b7;
color: white;
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
text-align: center;
}
a {
color: white
}
@keyframes borderAnim {
0% {border-color: #460000;}
50% {border-color: #f50000;}
100% {border-color: #460000;}
}
.orphHand {
margin: 0;
position: fixed;
top: -35px;
left: 7.5px;
z-index: 1000;
background: none;
border: none;
padding: 0;
cursor: pointer;
outline: none;
}
.orphHand img {
width: 150px;
height: 150px;
display: block;
transition: transform 0.2s ease;
}
.orphHand:hover img {
transform: scale(1.1);
}