-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (54 loc) · 982 Bytes
/
Copy pathstyle.css
File metadata and controls
61 lines (54 loc) · 982 Bytes
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
body {
display: flex; /*so i was able to align them */
flex-direction: column;
justify-content: center; /*vertical axis*/
align-items: center; /*horizontal axis*/
height: 100%;
width: 100%;
background-color: #a69cac;
}
h1 {
margin-top: 5em;
color: #161b33;
font-family: "Fredericka the Great", cursive;
font-size: 4em;
text-shadow: 0px 0px 9px black;
}
.homePage {
display: flex;
flex-direction: row;
}
#play {
padding-right: 3em;
}
#play a,
#HowTo a {
font-family: "Fredericka the Great", cursive;
font-size: 1.6em;
margin: 0 auto;
text-decoration: none;
color: #161b33;
border: 2px solid black;
padding: 10px;
background-color: rgb(249, 249, 249);
border-radius: 10%;
}
#play,
#HowTo {
animation: bounce 1.5s infinite;
}
#play a:hover,
#HowTo a:hover {
box-shadow: 0px 0px 9px black;
}
@keyframes bounce {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}