-
Notifications
You must be signed in to change notification settings - Fork 0
/
globby.css
161 lines (161 loc) · 3.49 KB
/
globby.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
body {
/*Adds a black outline when using the divs for backgrounding coloring in the way I did */
background-color: black;
}
.basic {
/*Used for the standard style of the site give the font and color */
font-family: 'Rock Salt';
background-color: #005A6D;
}
.title {
/*Giving the title some fair by animating it */
text-align: center;
text-shadow: 2px 2px black;
color: purple;
animation: texty 4s infinite;
}
/*Animation specifics */
@keyframes texty {
0% {color: purple;}
25% {color: red;}
50% {color: rgb(236, 147, 13);}
75% {color: rgb(7, 87, 7);}
90% {color: rgb(3, 3, 119);}
100% {color: purple;}
}
/*The code I used to animate the Globulus at the top left of page */
.noMoreGlobbies {
/*This code animation is credited to Nelle de Jones CodePen Home for their CSS Bounce-in Animation
can be found here https://codepen.io/nelledejones/pen/gOOPWrK */
animation: JumpingOnTheBed 2s ease infinite;
}
@keyframes JumpingOnTheBed {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
/*Used for the blockquote at the start of the landing page
which will be the only blockquote I use so no need to use a div
this positioning sid blockquote where I wanted it to placed and colored */
blockquote {
color: rgba(0, 0, 0, 0.466);
position: absolute;
top: 100px;
right: 1000px;
}
/*Centers text to the middle of the page */
.theAligner {
text-align: center;
}
/*Styles for each of the diferent product types */
.IDk {
font-family: 'Bangers';
background-color: #4F009C;
font-size: 30px;
}
.MnM {
font-family: 'Chalkduster', sans-serif;
background-color: #63542b;
font-size: 30px;
}
.Goon {
font-family: 'Creepster';
background-color: #97fd77;
font-size: 30px;
}
.TTRPG {
font-family: 'Luminari', sans-serif;
background-color: #ffffff;
font-size: 30px;
}
.ven {
font-family: 'Lemonism DEMO', sans-serif;
color: #ffffff;
background-color: #2b0a0a;
font-size: 30px;
}
.SO {
font-family: 'Wild Crow', sans-serif;
color: #ffffff;
background-color:#37053d;
}
.projects {
background-color: aquamarine;
font-family: 'News Junkie DEMO', sans-serif;
font-size: 30px;
}
.dnd {
background-color: #b11414;
font-family: 'Luminari', sans-serif;
font-size: 30px;
}
.art {
background-color: #1e3b1d;
font-family: 'Wildside', sans-serif;
font-size: 30px;
}
/*Coloring for the IDkWCT show title */
.yel {
color: yellow;
}
.organ {
color: #fe9d00;
}
.red {
color: red;
}
.purp {
color: rgb(123, 26, 184);
}
.bulb {
color: blue;
}
.tea {
color: teal;
}
.cyan {
color: #005A6D;
}
.whi {
color: #ffffff;
}
.bren {
color: #492c00;
}
.bluy {
color: #287ba8;
}
.golb {
color: #ffe415;
}
/*Used for center the text in the character section */
.chara-text {
position: relative;
left: 30px;
}
table, th, td {
border:2px solid rgb(0, 0, 0);
}
/*This code is used to scroll throught a series of images in a row
This code was borrowed from W3Schools */
.scroll-container {
background-color: #63542b;
overflow: auto;
white-space: nowrap;
padding: 10px;
}
.scroll-container img {
padding: 10px;
}
/* Centers the navagation */
.van {
display: flex;
flex-direction: row;
gap: 8px;
justify-content: center;
}
/* Colors the navagation on the home page */
.heading {
font-family: 'Rock Salt';
background-color: white;
}