-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMulti.css
111 lines (111 loc) · 1.93 KB
/
Multi.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
*{
margin: 0;
padding: 0;
}
body{
background-color: #ffe26a;
text-align: center;
background-image: url("./Images/Background.jpg");
}
.container{
height: 70vh;
display: flex;
justify-content: center;
align-items: center;
}
.game{
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1.2vmin;
position: relative;
}
.box{
height: 18vmin;
width: 18vmin;
border-radius: 1rem;
border: none;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
color: rgb(255, 255, 255);
font-size: 3rem;
background-color: #581845eb;
}
.btn{
background-color: orange;
border-radius: 1rem;
font-size: 1.25rem;
border: none;
color:solid red;
padding: 1rem;
}
.btn1{
background-color: orange;
border-radius: 1rem;
font-size: 1.25rem;
border: none;
color: solid red;
padding: 1rem;
margin: 1rem;
}
.btn:hover,
.btn1:hover{
filter: brightness(1.2);
transform: scale(1.06, 1.06);
}
.info{
font-size: 30px;
margin: 10px;
color: #ffe26a;
background-color: purple;
}
.line{
background-color: white;
height: 5px;
position: absolute;
transition: width 1s ease-in-out;
}
.msgContainer{
height: 10vmin;
}
#para{
font-size: 25px;
color: rgb(2, 242, 230);
}
.hide{
display: none;
}
.backgrd{
background-image: url("./Images/firework.gif");
}
#peng{
height: 400px;
position: absolute;
top: 20%;
right: 13%;
}
.img1{
height: 25px;
width: 50px;
}
.img2{
height: 25px;
width: 50px;
background: transparent ("left.jpg");
}
.blink{
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
0% {
opacity: 0.2;
}
50% {
opacity: 1;
}
100%{
opacity: 0;
}
}