-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.css
More file actions
91 lines (79 loc) · 1.31 KB
/
Copy pathrules.css
File metadata and controls
91 lines (79 loc) · 1.31 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
body {
font-family: monospace;
font-size: 1em;
background-color: #a69cac;
font-weight: bolder;
}
#container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
#beginning,
#main {
font-family: "Smythe", cursive;
font-size: 1.5em;
text-shadow: 0px 0px 6px rgb(248, 248, 248);
text-align: center;
}
#beginning {
margin-top: 3em;
}
.arrow {
color: white;
text-shadow: 0px 0px 5px rgb(248, 248, 248);
}
#yes,
#no,
#play {
color: #161b33;
border: 0.17em solid black;
padding: 10px;
background-color: rgb(249, 249, 249);
border-radius: 10px;
}
#yes,
#play {
animation: bounce 1.5s infinite;
}
#yes:hover,
#no:hover,
#play:hover {
box-shadow: 0px 0px 9px white;
}
#decision {
display: flex;
gap: 10px;
justify-content: center;
margin: 20px 0;
}
#yes {
margin-left: 10px;
}
#play {
display: flex;
justify-content: center;
align-items: center;
margin-top: 2em;
text-align: center;
width: 100%;
}
#yes a,
#no a,
#play a {
text-decoration: none; /*so I dont have a line under the links */
white-space: nowrap; /*so the challenge accepted word is in one line, it doesnt break*/
}
@keyframes bounce {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}