-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_season.css
104 lines (89 loc) · 1.79 KB
/
style_season.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
@import url('https://fonts.googleapis.com/css?family=Pinyon+Script');
@import url('https://fonts.googleapis.com/css?family=Rosario');
@import url('https://fonts.googleapis.com/css?family=Crimson+Text');
@keyframes show {
0% { display: none; }
100% { display: block; }
}
@keyframes hide {
0% { display: block; }
100% { display: none; }
}
body {
margin: 0;
padding: 0;
background-size: cover;
background-repeat: no-repeat;
}
#background_tweaks {
background-color: rgba(40,40,40,0.5);
margin: 0;
width: 100vw;
height: 100vh;
}
header {
padding: 55px 0px 20px 0px;
}
header span {
text-align: center;
font-size: 120px;
color: rgb(255,255,255,1);
font-family: Pinyon Script;
display: block;
}
#description p {
text-align: center;
line-height: 1.05;
font-size: 26px;
color: rgb(255,255,255,1);
font-family: Rosario, Arial, Helvetica;
}
#description span {
text-align: center;
font-size: 35px;
font-weight: bold;
color: rgb(255,255,255,1);
font-family: Pinyon Script;
}
#proverbs {
position: relative;
padding-top: 20px;
}
#main_proverb_phrase {
text-align: center;
font-size: 25px;
color: rgb(255,255,255,1);
font-family: Rosario, Arial, Helvetica;
}
.proverb {
position: absolute;
top: 75px;
left: 50%;
width: 100%;
height: 90%;
transform: translate(-50%, 0);
line-height: 1.05;
text-align: center;
font-size: 25px;
color: rgb(255,255,255,1);
font-family: Crimson Text, Arial, Helvetica;
/* animation */
animation: show 1500ms;
opacity: 1;
transition: opacity 1500ms;
transition-delay: 800ms;
}
.proverb.hidden {
/* animation */
animation: hide 1500ms;
opacity: 0;
transition: opacity 1500ms;
}
.strokeme
{
text-shadow:
-0.4px -0.4px 0 #000,
0.4px -0.4px 0 #000,
-0.4px 0.4px 0 #000,
0.4px 0.4px 0 #000;
}