-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (92 loc) · 1.47 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (92 loc) · 1.47 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
* {
margin: 0;
padding: 0;
}
.intro {
text-align: center;
}
html {
box-sizing: box-border;
scroll-behavior: smooth;
}
h1 {
margin: 0 0 5px 0;
font-size: 2.5em;
font-family: 'Satisfy', cursive;
}
p.introTxt {
margin-bottom: 10px;
font-size: 1.2em;
font-family: 'Satisfy', cursive;
}
.game-wrapper {
background-color: rgb(244, 193, 244);
height: 100%;
width: 100%;
}
text {
fill: blue;
font-size: 30px;
text-transform: uppercase;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
width: 100px;
cursor: pointer;
margin: auto;
}
.btn:hover{
background-color: rgb(152, 152, 237);
}
#inputTxt {
display: block;
width: 25%;
height: 40px;
text-align: center;
border-radius: 5px;
border-width: 3px;
border-style: solid;
padding: 10px;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: auto;
margin-top: 30px;
}
#inputTxt:focus {
outline: none;
border-color:coral;
}
.gameColor {
fill: rgb(246, 9, 9);
}
@keyframes roll {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.roll {
animation: roll 0.3s linear 2;
/* animation-duration: 10s; */
/* animation-fill-mode: forwards; */
transform-origin: center;
}
svg {
display: flex;
align-items: center;
justify-content: center;
margin: auto;
}
.copyright {
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0 10px 0;
}