This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstory_stylesheet.css
92 lines (78 loc) · 1.48 KB
/
story_stylesheet.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
@import url('https://fonts.googleapis.com/css?family=Mountains+of+Christmas&display=swap');
html {
font-family: 'Mountains of Christmas', cursive;
}
body
{
font-size: 20px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 1.0);
}
.image
{
display: block;
margin-left: auto;
margin-right: auto;
max-height:200px;
width: auto;
height: 30%;
text-align: center;
}
#logo
{
display: block;
margin-left: auto;
margin-right: auto;
width: 30%;
text-align: center;
}
body[data-tags~="Logo"] {
background-color: #FFFFFF;
}
body[data-tags~="COVER"] {
background-color: #FFFFFF;
}
body[data-tags~="LRH"] {
background-color: #6e0f2d
}
body[data-tags~="PAW"] {
background-color: #24305e
}
body[data-tags~="TLP"] {
background-color: #1D4D4F
}
@-webkit-keyframes blinker {
from {opacity: 1.0;}
to {opacity: 0.0;}
}
a {
color: #f5af22;
}
a:hover{
color: #f5af22;
text-decoration: blink;
-webkit-animation-name: blinker;
-webkit-animation-duration: 1.0s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-direction: alternate;
}
body[data-tags~="QC"] {
margin: 0;
width: 100%;
height: 100vh;
color: #fff;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradientBG 10s ease infinite;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}