forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (73 loc) · 1.21 KB
/
style.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
body{
margin-top: 50px;
text-align: center;
background-image:url(stadiumimage.webp);
background-size: cover;
background-repeat: no-repeat;
background-position: fixed;
}
.box1{
background-color: black;
width: 50%;
display: inline-block;
align-items: center;
margin-top: 20px;
border-radius: 30px;
border: 3px solid white;
animation: bounceIn 2s forwards;
}
@keyframes bounceIn {
0% {
transform: scale(0);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.game-image{
align-items: center;
}
.box1 h1{
color: white;
padding: 30px;
font-weight: bold;
font-size: 50px;
font-style: italic;
text-decoration: underline;
}
.game_buttons{
height: 100px;
width: 100px;
border: none;
margin: 10px;
border-radius: 50%;
background-color:grey;
padding: 0;
overflow: hidden;
}
img{
display: block;
height: auto;
border-radius: 50%;
width: 100%;
}
#reset{
color: rgb(248, 248, 248);
background-color: red;
border-radius: 30px;
border: 1px solid black;
padding: 10px 15px;
transition: background-color 0.5s ease;
}
#reset:hover{
background-color: rgb(199, 4, 4);
}
#reset:active{
background-color: rgb(146, 7, 7);
}
.show{
color: white
}